-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
85 lines (85 loc) · 1.99 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
83
84
85
{
"name": "chai-http",
"version": "0.0.0-development",
"description": "Extend Chai Assertion library with tests for http apis",
"author": "Jake Luer <[email protected]>",
"license": "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": [
"lib/*.js",
"index.js",
"types/index.d.ts"
],
"main": "./index.js",
"exports": {
".": {
"import": "./index.js",
"types": "./types/index.d.ts"
}
},
"types": "./types/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:chaijs/chai-http.git"
},
"scripts": {
"build": "npm run build:ts",
"build:ts": "cd types && tsc",
"start": "npm-run-all --parallel watch server",
"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",
"eslint": "eslint"
},
"browser": {
"http": false,
"https": false,
"net": "./lib/net.js",
"querystring": "qs"
},
"dependencies": {
"charset": "^1.0.1",
"cookiejar": "^2.1.4",
"is-ip": "^5.0.1",
"methods": "^1.1.2",
"qs": "^6.12.1",
"superagent": "^9"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/chai": "^4.3.16",
"@types/superagent": "^8.1.7",
"chai": "^5.1.0",
"coveralls": "^3.1.1",
"eslint": "^9.3.0",
"eslint-plugin-mocha": "^10.4.3",
"http-server": "^14.1.1",
"mocha": "^10.4.0",
"npm-run-all2": "^6.2.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.20.0"
},
"type": "module",
"mocha": {
"reporter": "spec",
"require": "./test/bootstrap/index.js"
}
}