forked from senchalabs/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 KB
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
{
"name": "connect",
"version": "3.0.0-rc.2",
"description": "High performance middleware framework",
"version": "2.16.2",
"author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
"contributors": [
{
"name": "Douglas Christopher Wilson",
"email": "doug@somethingdoug.com"
},
{
"name": "Jonathan Ong",
"email": "me@jongleberry.com"
},
{
"name": "Tim Caswell",
"email": "tim@creationix.com"
}
],
"keywords": [
"framework",
"web",
"middleware",
"connect",
"rack"
],
"repository": "git://github.com/senchalabs/connect.git",
"dependencies": {
"debug": "0.8.1",
"parseurl": "1.0.1",
"escape-html": "1.0.1",
"utils-merge": "1.0.0"
},
"devDependencies": {
"coveralls": "2.10.0",
"istanbul": "0.2.10",
"mocha": "~1.19.0",
"should": "~3.3.1",
"supertest": "~0.12.0"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "mocha --reporter spec",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter spec",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec && cat ./coverage/lcov.info | coveralls"
}
}