forked from ForbesLindesay/browserify-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 999 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 999 Bytes
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
{
"name": "browserify-middleware",
"version": "7.1.0",
"description": "express middleware for browserify v2",
"scripts": {
"test": "mocha -R spec -t 7000",
"test:perf": "mocha -R spec -t 7000",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -t 7000",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/ForbesLindesay/browserify-middleware.git"
},
"keywords": [
"browserify",
"middleware",
"express",
"connect"
],
"author": "ForbesLindesay",
"license": "MIT",
"devDependencies": {
"concat-stream": "*",
"coveralls": "^2.11.2",
"express": "*",
"hyperquest": "*",
"istanbul": "^0.3.5",
"mocha": "*",
"require-test": "1.0.0"
},
"dependencies": {
"browserify": "^13.1.0",
"ms": "^0.7.1",
"prepare-response": "^1.1.2",
"promise": "^7.0.3",
"uglify-js": "^2.7.3",
"watchify": "^3.3.0"
}
}