This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
86 lines (86 loc) · 2.92 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
78
79
80
81
82
83
84
85
86
{
"name": "iink-js",
"version": "2.0.2",
"main": "dist/iink.min.js",
"module": "dist/iink.esm.js",
"description": "iinkJS is the fastest way to integrate handwriting panel and recognition in your webapp",
"keywords": [
"myscript",
"javascript",
"developer",
"handwriting",
"recognition",
"cloud",
"iink"
],
"files": [
"dist"
],
"license": "Apache-2.0",
"homepage": "https://myscript.github.io/iinkJS/",
"repository": {
"type": "git",
"url": "git://github.com/MyScript/iinkJS.git"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"clipboard": "^1.7.1",
"crypto-js": "^3.3.0",
"d3-selection": "^1.4.1",
"json-css": "^1.5.6",
"lodash.merge": "^4.6.2",
"loglevel": "^1.6.8",
"perfect-scrollbar": "^1.5.0",
"uuid-js": "^0.7.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^6.1.0",
"chai": "^4.3.4",
"clean-css-cli": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"minami": "^1.2.3",
"mocha": "^9.0.3",
"mock-css-modules": "^2.0.0",
"npm-run-all": "^4.1.5",
"playwright": "1.16.0",
"postcss-import": "^12.0.1",
"rollup": "^2.18.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-livereload": "^1.2.0",
"rollup-plugin-postcss": "^2.6.2",
"rollup-plugin-progress": "^1.1.1",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^7.0.1",
"sinon": "^2.4.1",
"taffydb": "^2.7.3"
},
"scripts": {
"lint": "eslint --ext js src test examples",
"lint:fix": "eslint --ext js src test examples --fix",
"docs": "npx jsdoc -R README.md -P '' -d docs -t node_modules/minami -r src",
"minify-css": "cleancss -o dist/iink.min.css src/*.css",
"test:mocha": "mocha --require @babel/register,mock-css-modules --recursive test/mocha/ --reporter progress",
"test:mocha-xunit": "mocha --require @babel/register --recursive test/mocha/ --reporter xunit --reporter-options output=./test/mocha/results/xunit.xml",
"test:e2e": "mocha --config .mocharc.e2e.js",
"test:chromium": "BROWSER=chromium mocha --config .mocharc.e2e.js",
"test:webkit": "BROWSER=webkit mocha --config .mocharc.e2e.js",
"test:firefox": "BROWSER=firefox mocha --config .mocharc.e2e.js",
"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"
}
}