This repository has been archived by the owner on Jan 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
77 lines (77 loc) · 2.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "myscript",
"version": "4.3.0",
"main": "dist/myscript.min.js",
"module": "dist/myscript.esm.js",
"description": "MyScriptJS is the fastest way to integrate handwriting panel and recognition in your webapp",
"keywords": [
"myscript",
"javascript",
"developer",
"handwriting",
"recognition",
"cloud"
],
"files": [
"dist"
],
"license": "Apache-2.0",
"homepage": "https://myscript.github.io/MyScriptJS/",
"repository": {
"type": "git",
"url": "git://github.com/MyScript/MyScriptJS.git"
},
"dependencies": {
"assign-deep": "^0.4.7",
"clipboard": "^1.7.1",
"crypto-js": "^3.1.9-1",
"d3-selection": "^1.3.0",
"json-css": "^1.5.6",
"loglevel": "^1.6.1",
"perfect-scrollbar": "^1.3.0",
"uuid-js": "^0.7.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"clean-css-cli": "^4.1.11",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.8.2",
"mocha": "^5.1.1",
"npm-run-all": "^4.1.3",
"rollup": "0.63.x",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^2.3.1",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0",
"sinon": "^2.4.1"
},
"scripts": {
"lint": "eslint --ext js src",
"docs": "esdoc",
"minify-css": "cleancss -o dist/myscript.min.css src/*.css",
"test:mocha": "mocha --require babel-core/register --recursive test/mocha/ --reporter progress",
"test:mocha-xunit": "mocha --require babel-core/register --recursive test/mocha/ --reporter xunit --reporter-options output=./test/mocha/results/xunit.xml",
"build:js": "rollup -c config/rollup.config.build.js --sourcemap",
"build": "npm-run-all test:mocha lint build:js minify-css docs",
"dev:js": "rollup -c config/rollup.config.dev.js -w --sourcemap",
"dev": "npm-run-all minify-css dev:js",
"start": "npm run dev"
}
}