forked from chaijs/chai-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.79 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "chai-http",
"version": "3.0.0",
"description": "Extend Chai Assertion library with tests for http apis",
"author": "Jake Luer <[email protected]>",
"licence": "MIT",
"keywords": [
"chai",
"chai-plugin",
"browser",
"http",
"request",
"vendor",
"supertest",
"superagent"
],
"contributors": [
"Jake Luer <[email protected]>",
"Veselin Todorov <[email protected]>",
"Keith Cirkel <[email protected]> (http://keithcirkel.co.uk)"
],
"files": [
"dist/chai-http.js",
"lib/*.js",
"index.js"
],
"main": "./index",
"repository": {
"type": "git",
"url": "[email protected]:chaijs/chai-http.git"
},
"scripts": {
"build": "npm run build:readme && npm run build:js",
"prebuild:js": "rm -rf dist",
"build:js": "simplifyify lib/http.js --outfile dist/chai-http.js --bundle --minify --debug --standalone chaiHttp",
"build:readme": "rm -rf README.md && node ./support/readme",
"start": "npm-run-all --parallel watch server",
"watch": "npm run build:js -- --watch",
"server": "http-server -o -c-1",
"test": "istanbul cover --report lcovonly _mocha",
"posttest": "if [ -z \"$COVERALLS_REPO_TOKEN\" ]; then cat coverage/lcov.info | coveralls; fi"
},
"browser": {
"http": false,
"https": false,
"net": "./lib/net.js",
"querystring": "qs"
},
"dependencies": {
"cookiejar": "2.1.0",
"is-ip": "1.0.0",
"methods": "^1.1.2",
"qs": "^6.2.0",
"superagent": "^3.3.0"
},
"devDependencies": {
"simplifyify": "^2.0.1",
"chai": "4",
"coveralls": "^2.11.9",
"dox": "^0.8.1",
"es6-shim": "^0.35.1",
"http-server": "^0.9.0",
"istanbul": "^0.4.3",
"mocha": "^3.0.2",
"npm-run-all": "^3.0.0"
},
"engines": {
"node": ">=4"
}
}