-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
33 lines (33 loc) · 853 Bytes
/
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
{
"name": "escher.js",
"version": "0.1.17",
"description": "escher.js is a web library for building interactive diagrams and graphs.",
"main": "build/escher.min.js",
"repository": {
"type": "git",
"url": "https://github.com/tentone/escher.js.git"
},
"scripts": {
"start": "rollup -c rollup.dev.js",
"build": "rollup -c && npm run uglify",
"docs": "jsdoc -d docs -r source",
"uglify": "uglifyjs --compress --mangle --output build/escher.min.js -- build/escher.js",
"pub": "npm run build && npm run docs && npm publish --access public ."
},
"keywords": [
"diagram",
"canvas",
"graph",
"web"
],
"author": "Tentone",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"jsdoc": "~3.6.11",
"uglify-js": "~3.17.0",
"rollup": "~2.78.1",
"rollup-plugin-strip": "~1.2.2",
"rollup-plugin-serve": "~2.0.1"
}
}