-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.38 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
86
87
{
"name": "chai-superagent",
"version": "3.1.0",
"description": "Extend Chai Assertion library with tests for superagent requests",
"author": "Julian Grinblat <julian@dotcore.co.il>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"keywords": [
"chai",
"chai-plugin",
"browser",
"http",
"request",
"vendor",
"superagent"
],
"files": [
"index.js",
"types/index.d.ts"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"types": "./types/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:dotcore64/chai-superagent.git"
},
"scripts": {
"lint": "eslint --cache .",
"test:types": "tsc -p types",
"test:node": "mocha",
"test:browser": "karma start karma.conf.cjs --single-run --no-auto-watch",
"test": "npm run test:types && npm run test:node && npm run test:browser",
"cover": "npm run test:types && c8 npm run test:node && npm run test:browser"
},
"dependencies": {
"charset": "^1.0.1",
"cookiejar": "^2.1.4",
"methods": "^1.1.2",
"qs": "^6.13.1"
},
"peerDependencies": {
"chai": "^4.0.0 || ^5.0.0",
"superagent": "^7.1.6 || ^8.0.0 || ^9.0.0 || ^10.0.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@types/chai": "^5.0.1",
"@types/node": "^22.10.5",
"@types/superagent": "^8.1.9",
"c8": "^10.1.3",
"chai": "^5.1.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-unicorn": "^56.0.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.8",
"karma-sourcemap-loader": "^0.4.0",
"karma-spec-reporter": "^0.0.36",
"mocha": "^11.0.1",
"puppeteer": "^23.11.1",
"rollup": "^4.29.1",
"rollup-plugin-istanbul": "^5.0.0",
"superagent": "^10.1.1",
"superagent-prefix": "^0.0.2",
"typescript": "^5.7.2"
}
}