-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.95 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
{
"name": "mxgraph-sketch",
"version": "0.0.1",
"description": "A TypeScript library to add sketch style to mxGraph with roughjs",
"repository": "https://github.com/process-analytics/mxgraph-sketch",
"license": "Apache-2.0",
"module": "dist/index.es.js",
"main": "dist/index.umd.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"all": "run-s clean lint lint-check build",
"clean": "rimraf build dist",
"build": "rollup -c",
"start": "rollup -c --silent --environment devMode:true",
"watch": "rollup -cw --environment devLiveReloadMode:true",
"lint": "tsc --noEmit && eslint \"*/**/*.{js,ts,tsx}\" NOTICE --quiet --fix",
"lint-check": "tsc --noEmit && eslint \"*/**/*.{js,ts,tsx}\" NOTICE --max-warnings 0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.3",
"mxgraph-type-definitions": "^1.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.36.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-copy-watch": "0.0.1",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-serve": "^1.0.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.0.3"
},
"dependencies": {
"mxgraph": "^4.2.0",
"roughjs": "^4.3.1"
}
}