-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "cogent",
"version": "1.0.1",
"description": "Simpler HTTP requests using co",
"repository": "cojs/cogent",
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"main": "lib",
"dependencies": {
"debug": "*",
"netrc": "~0.1.3",
"write-to": "^1.0.0",
"raw-body": "^1.1.2",
"statuses": "^1.0.2"
},
"devDependencies": {
"koa": "0",
"koa-basic-auth": "^1.1.0",
"co": "^3.0",
"mocha": "^1.6",
"should": "^3.0",
"istanbul-harmony": "~0.2.9"
},
"files": [
"lib"
],
"scripts": {
"test": "mocha --harmony-generators --require should --reporter spec",
"test-cov": "node --harmony-generators ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should",
"test-travis": "node --harmony-generators ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should"
}
}