-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
40 lines (40 loc) · 1020 Bytes
/
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
{
"name": "browserify-middleware",
"version": "8.1.1",
"description": "express middleware for browserify v2",
"scripts": {
"test": "mocha -R spec -t 7000 --exit",
"test:perf": "mocha -R spec -t 7000 --exit",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -t 7000 --exit",
"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.4.5",
"mocha": "*",
"require-test": "1.0.0"
},
"dependencies": {
"browserify": "^16.0.0",
"ms": "^2.1.1",
"prepare-response": "^2.1.1",
"promise": "^8.0.2",
"uglify-es": "^3.3.9",
"watchify": "^3.3.0"
}
}