forked from chaijs/chai-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.24 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "chai-http",
"version": "4.4.0",
"description": "Extend Chai Assertion library with tests for http apis",
"author": "Jake Luer <jake@alogicalparadox.com>",
"license": "MIT",
"keywords": [
"chai",
"chai-plugin",
"browser",
"http",
"request",
"vendor",
"supertest",
"superagent"
],
"contributors": [
"Jake Luer <jake@alogicalparadox.com>",
"Veselin Todorov <hi@vesln.com>",
"Keith Cirkel <oss@keithcirkel.co.uk> (http://keithcirkel.co.uk)"
],
"files": [
"dist/chai-http.js",
"lib/*.js",
"index.js",
"types/index.d.ts"
],
"main": "./index",
"types": "./types/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:chaijs/chai-http.git"
},
"scripts": {
"build": "npm run build:js && npm run build:ts",
"prebuild:js": "rm -rf dist",
"build:js": "simplifyify lib/http.js --outfile dist/chai-http.js --bundle --minify --debug --standalone chaiHttp",
"build:ts": "cd types && tsc",
"start": "npm-run-all --parallel watch server",
"watch": "npm run build:js -- --watch",
"server": "http-server -o -c-1",
"test": "nyc --reporter=lcovonly --reporter=text-summary mocha",
"coverage": "if [ -z \"$COVERALLS_REPO_TOKEN\" ]; then cat coverage/lcov.info | coveralls; fi",
"release": "npm run build && semantic-release"
},
"browser": {
"http": false,
"https": false,
"net": "./lib/net.js",
"querystring": "qs"
},
"dependencies": {
"@types/chai": "4",
"@types/superagent": "^8.1.6",
"charset": "^1.0.1",
"cookiejar": "^2.1.4",
"is-ip": "^3.1.0",
"methods": "^1.1.2",
"qs": "^6.11.2",
"superagent": "^9"
},
"devDependencies": {
"@jsdevtools/simplifyify": "^8.0.4",
"@semantic-release/changelog": "^6",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"chai": "4",
"coveralls": "^3.1.1",
"es6-shim": "^0.35.8",
"http-server": "^14.1.1",
"mocha": "^10.4.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"semantic-release": "^23.0.8",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=18.20.0"
}
}