-
Notifications
You must be signed in to change notification settings - Fork 234
/
package.json
98 lines (98 loc) · 3.3 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
94
95
96
97
98
{
"name": "docsite",
"version": "1.3.11",
"description": "A tool for build static doc site(react)",
"bin": {
"docsite": "./bin/docsite.js"
},
"keywords": [
"doc",
"markdown",
"static site",
"react"
],
"scripts": {
"check": "npm run prettier && npm run lint && npm run test",
"clean": "rimraf coverage",
"cov": "npm run test-reset && egg-bin cov --timeout 120000",
"ci": "npm run clean && npm run cov",
"prettier": "prettier --write 'bin/*.js' 'lib/*.js'",
"lint": "eslint --ext .js bin lib || exit 0",
"test": "npm run test-reset && npm run test-local",
"test-local": "egg-bin test --timeout 120000",
"test-reset": "rimraf test/docsite-project && mkdir test/docsite-project",
"postinstall": "opencollective-postinstall"
},
"engines": {
"node": ">=6.4.0"
},
"author": "liandong.cld",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-do-expressions": "^7.6.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.0",
"asset-require-hook": "^1.2.0",
"chalk": "^2.4.1",
"chokidar": "^2.0.3",
"co": "^4.6.0",
"commander": "^2.15.1",
"css-modules-require-hook": "^4.2.3",
"ejs": "^2.6.1",
"fs-extra": "^6.0.1",
"highlight.js": "^9.12.0",
"inquirer": "^6.2.1",
"js-yaml": "^3.12.0",
"jsdom": "^11.12.0",
"markdown-it": "^8.4.1",
"markdown-it-anchor": "^7.1.0",
"markdown-it-footnote": "^3.0.1",
"markdown-it-github-preamble": "^1.0.0",
"markdown-it-github-toc": "^3.2.4",
"markdown-it-katex": "^2.0.3",
"markdown-it-link-attributes": "^2.0.0",
"markdown-it-replace-link": "^1.0.1",
"node-sass": "^4.9.2",
"opencollective": "^1.0.3",
"opencollective-postinstall": "^2.0.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"shelljs": "^0.8.2"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"coffee": "^5.1.0",
"egg-bin": "^4.8.4",
"egg-ci": "^1.8.0",
"eslint": "^5.5.0",
"eslint-config-egg": "^7.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"prettier": "^1.14.2"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/docsite"
}
}