forked from leungwensen/mindmap-layouts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.74 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
{
"name": "mindmap-layouts",
"version": "0.2.9",
"description": "mindmap layouts",
"main": "dist/mindmap-layouts.js",
"scripts": {
"build": "webpack --config ./webpack.config.js",
"dev": "webpack-dev-server --config ./webpack-dev.config.js --open",
"lint": "eslint --fix .",
"publish-all": "npm run push-all && npm publish && npm run sync-cnpm",
"push-all": "npm run push-master && npm run push-tags && npm run push-gh-pages",
"push-gh-pages": "git checkout gh-pages && git merge master && git push && git checkout master",
"push-master": "git checkout master && git push",
"push-tags": "git push --tag",
"start": "npm run dev",
"sync-cnpm": "cnpm sync $npm_package_name",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/leungwensen/mindmap-layouts.git"
},
"keywords": [
"mindmap"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/leungwensen/mindmap-layouts/issues"
},
"homepage": "https://github.com/leungwensen/mindmap-layouts#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-preset-es2017": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"eslint": "^3.16.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^2.0.1",
"pre-commit": "^1.2.2",
"random-graph": "0.0.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"zero-colors": "^0.2.0"
}
}