forked from tmcw/docbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "docbox",
"version": "1.0.1",
"description": "an api documentation website",
"main": "index.js",
"scripts": {
"start": "budo src/index.js --serve=bundle.js --live",
"test": "npm run test-unit && eslint src && npm run prerender -- /dev/null && rm -rf lib",
"test-unit": "mocha --compilers js:babel-register test",
"prerender": "babel src --out-dir lib && node lib/render.js",
"build": "cross-env NODE_ENV=production browserify src/index.js | uglifyjs -c -m > bundle.js && npm run prerender -- index.html"
},
"browserify": {
"transform": [
"babelify",
"brfs"
]
},
"keywords": [
"api",
"documentation"
],
"author": "Tom MacWright",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.4.0",
"babel-eslint": "^6.0.4",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babelify": "^7.2.0",
"brfs": "^1.4.2",
"browserify": "^13.0.0",
"cssnano": "^3.4.0",
"es6-promise": "^3.0.2",
"eslint": "^2.9.0",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^5.1.1",
"github-slugger": "^1.0.1",
"highlight.js": "^9.2.0",
"isomorphic-fetch": "^2.2.0",
"lodash.debounce": "^4.0.3",
"minifyify": "^7.1.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-pure-render": "^1.0.2",
"remark": "^4.2.2",
"remark-html": "^3.0.0",
"remark-slug": "^4.1.0",
"unist-util-select": "^1.3.0",
"unist-util-visit": "^1.0.0"
},
"devDependencies": {
"babel-register": "^6.3.13",
"budo": "^8.2.2",
"cross-env": "^1.0.8",
"expect": "^1.13.4",
"mocha": "^2.3.4",
"to-vfile": "^1.0.0",
"uglifyjs": "^2.4.10"
}
}