UNPKG

2.03 kBJSONView Raw
1{
2 "name": "chai-http",
3 "version": "4.3.0",
4 "description": "Extend Chai Assertion library with tests for http apis",
5 "author": "Jake Luer <jake@alogicalparadox.com>",
6 "license": "MIT",
7 "keywords": [
8 "chai",
9 "chai-plugin",
10 "browser",
11 "http",
12 "request",
13 "vendor",
14 "supertest",
15 "superagent"
16 ],
17 "contributors": [
18 "Jake Luer <jake@alogicalparadox.com>",
19 "Veselin Todorov <hi@vesln.com>",
20 "Keith Cirkel <oss@keithcirkel.co.uk> (http://keithcirkel.co.uk)"
21 ],
22 "files": [
23 "dist/chai-http.js",
24 "lib/*.js",
25 "index.js",
26 "types/index.d.ts"
27 ],
28 "main": "./index",
29 "types": "./types/index.d.ts",
30 "repository": {
31 "type": "git",
32 "url": "git@github.com:chaijs/chai-http.git"
33 },
34 "scripts": {
35 "build": "npm run build:readme && npm run build:js && npm run build:ts",
36 "prebuild:js": "rm -rf dist",
37 "build:js": "simplifyify lib/http.js --outfile dist/chai-http.js --bundle --minify --debug --standalone chaiHttp",
38 "build:ts": "cd types && tsc",
39 "build:readme": "rm -rf README.md && node ./support/readme",
40 "start": "npm-run-all --parallel watch server",
41 "watch": "npm run build:js -- --watch",
42 "server": "http-server -o -c-1",
43 "test": "istanbul cover --report lcovonly _mocha",
44 "posttest": "if [ -z \"$COVERALLS_REPO_TOKEN\" ]; then cat coverage/lcov.info | coveralls; fi"
45 },
46 "browser": {
47 "http": false,
48 "https": false,
49 "net": "./lib/net.js",
50 "querystring": "qs"
51 },
52 "dependencies": {
53 "@types/chai": "4",
54 "@types/superagent": "^3.8.3",
55 "cookiejar": "^2.1.1",
56 "is-ip": "^2.0.0",
57 "methods": "^1.1.2",
58 "qs": "^6.5.1",
59 "superagent": "^3.7.0"
60 },
61 "devDependencies": {
62 "chai": "4",
63 "coveralls": "^3.0.0",
64 "dox": "^0.9.0",
65 "es6-shim": "^0.35.1",
66 "http-server": "^0.10.0",
67 "istanbul": "^0.4.3",
68 "mocha": "^4.0.1",
69 "npm-run-all": "^4.1.1",
70 "simplifyify": "^4.0.0",
71 "typescript": "^3.0.1"
72 },
73 "engines": {
74 "node": ">=4"
75 }
76}