forked from senchalabs/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "connect",
"description": "High performance middleware framework",
"version": "3.1.0",
"author": "TJ Holowaychuk <[email protected]> (http://tjholowaychuk.com)",
"contributors": [
"Douglas Christopher Wilson <[email protected]>",
"Jonathan Ong <[email protected]>",
"Tim Caswell <[email protected]>"
],
"keywords": [
"framework",
"web",
"middleware",
"connect",
"rack"
],
"repository": "senchalabs/connect",
"dependencies": {
"debug": "1.0.4",
"finalhandler": "0.1.0",
"parseurl": "~1.2.0",
"utils-merge": "1.0.0"
},
"devDependencies": {
"istanbul": "0.3.0",
"mocha": "~1.21.0",
"should": "~4.0.0",
"supertest": "~0.13.0"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/"
}
}