forked from choojs/bankai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "bankai",
"version": "2.0.5",
"description": "DIY asset server",
"main": "index.js",
"scripts": {
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"test": "standard && npm run deps && NODE_ENV=test node test/index.js",
"test:cov": "standard && npm run deps && NODE_ENV=test istanbul cover test/index.js"
},
"repository": "yoshuawuyts/bankai",
"keywords": [
"server",
"dev",
"development",
"asset",
"browserify",
"sheetify",
"html",
"css",
"js",
"stream"
],
"license": "MIT",
"dependencies": {
"bl": "^1.0.0",
"css-extract": "^1.0.0",
"errorify": "^0.3.1",
"hyperstream": "^1.2.2",
"inject-lr-script-stream": "^1.1.1",
"readable-stream": "^2.0.5",
"sheetify": "^5.0.2",
"simple-html-index": "^1.2.1",
"watchify": "^3.6.1",
"xtend": "^4.0.1"
},
"devDependencies": {
"browserify": "^13.0.0",
"concat-stream": "^1.5.1",
"dependency-check": "^2.5.1",
"get-server-port": "^1.0.0",
"is-html": "^1.0.0",
"istanbul": "^0.4.1",
"standard": "^7.1.2",
"tape": "^4.2.2"
},
"files": [
"index.js",
"bin/*",
"handler-*"
]
}