-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
45 lines (45 loc) · 1.22 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
{
"author": "adrai",
"name": "flowchart.js",
"version": "1.18.0",
"main": "./index",
"private": false,
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"raphael": "2.3.0"
},
"types": "types/index.d.ts",
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-defaults": "^8.0.2",
"express": ">= 0.0.1",
"jquery": "^3.4.0",
"lodash": ">=0.2.1",
"moment": "^2.11.1",
"webpack": "^1.12.11",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"scripts": {
"init": "git submodule init && git submodule update && git submodule status",
"start": "node devserver.js",
"lint": "eslint src",
"build:unminified": "NODE_ENV=production webpack -d --config webpack.config.js",
"build:minified": "NODE_ENV=production MINIFIED=1 webpack -d --config webpack.config.js",
"build": "npm run build:unminified && npm run build:minified && cp ./release/flowchart.js ./site/flowchart-latest.js",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/adrai/flowchart.js.git"
},
"keywords": [
"flowchart",
"client",
"script"
],
"homepage": "http://flowchart.js.org/",
"license": "MIT"
}