-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
93 lines (93 loc) · 2.5 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "atool-doc",
"version": "0.9.2",
"description": "Static demo site generator based on atool-build & dora.",
"keywords": [
"atool",
"doc"
],
"author": "jaredleechn <[email protected]>",
"homepage": "https://github.com/ant-tool/atool-doc",
"repository": {
"type": "git",
"url": "https://github.com/ant-tool/atool-doc"
},
"bugs": {
"url": "https://github.com/ant-tool/atool-doc/issues"
},
"license": "ISC",
"main": "./lib/doc.js",
"files": [
"lib",
"bin",
"tpl"
],
"bin": {
"atool-doc": "./bin/atool-doc.js"
},
"scripts": {
"start": "concurrently 'npm run dev' 'npm run doc'",
"build": "rm -rf lib && ./node_modules/.bin/babel src --out-dir lib --ignore __tests__",
"dev": "./node_modules/.bin/babel src -s --out-dir lib --watch --ignore __tests__",
"doc": "node bin/atool-doc.js --doraPlugins proxy --port 8987",
"lint": "eslint src",
"eslint-fix": "eslint --fix src",
"gh-pages": "npm run doc -- --build && gh-pages -d __site",
"pub": "npm run build && npm publish && npm run gh-pages",
"beta": "npm run build && npm publish --tag beta && npm run gh-pages",
"test": "npm run lint",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"peerDependencies": {
"atool-build": "~0.11.0",
"dora": "~0.3.0"
},
"dependencies": {
"atool-monitor": "0.x",
"chokidar": "~1.5.1",
"commander": "~2.9.0",
"copy-webpack-plugin": "^3.0.1",
"dora-plugin-proxy": "~0.6.1",
"ejs": "^2.4.2",
"glob": "~7.0.3",
"highlight.js": "~9.2.0",
"html-webpack-plugin": "~2.9.0",
"koa-webpack-dev-middleware": "~1.1.0",
"loader-utils": "~0.2.12",
"mark-twain": "~0.2.0-beta.4",
"marked": "~0.3.5",
"ramda": "~0.19.1",
"source-map-loader": "^0.2.1",
"style-loader": "~0.13.0"
},
"devDependencies": {
"atool-build": "~0.11.0",
"babel-cli": "~6.6.5",
"babel-eslint": "^6.0.4",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-preset-es2015": "~6.6.0",
"babel-preset-stage-0": "~6.5.0",
"concurrently": "^2.1.0",
"dora": "~0.3.2",
"eslint": "^2.0.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-jsx-a11y": "^0.6.2",
"eslint-plugin-react": "~4.3.0",
"gh-pages": "~0.11.0",
"isomorphic-fetch": "~2.2.1",
"pre-commit": "~1.1.2",
"raw-loader": "~0.5.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"pre-commit": [
"lint"
]
}