-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.34 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.34 KB
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
{
"name": "sprite-workflow",
"version": "0.0.23",
"description": "Draws workflow chart diagrams with spritejs",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "webpack --config ./build/webpack.config.prod.js",
"standalone": "babel src -d lib && webpack --env.standalone",
"start": "webpack-dev-server --config ./build/webpack.config.dev.js",
"demo": "webpack-dev-server --config ./build/webpack.conf.demo.js --color --progress",
"docs": "rimraf docs && cross-env NODE_ENV=production webpack --config ./build/webpack.conf.prod.docs.js",
"prepublishOnly": "npm run build",
"lint": "eslint ./ --fix"
},
"author": "yaotaiyang",
"license": "MIT",
"bugs": {
"url": "https://github.com/spritejs/sprite-workflow"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/runtime": "^7.2.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"codemirror": "^5.43.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"markdown-it-container": "^2.0.0",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"scapegoat": "^1.0.0",
"split.js": "^1.5.10",
"style-loader": "^0.23.1",
"vue-loader": "^15.6.2",
"vue-md-loader": "^1.1.0",
"vue-template-compiler": "^2.5.22",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.2.1"
},
"homepage": "https://github.com/spritejs/sprite-workflow",
"dependencies": {
"q-schema-validator": "0.0.3",
"sprite-draggable": "0.1.15",
"sprite-extend-shapes": "0.1.51"
}
}