-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (43 loc) · 852 Bytes
/
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
{
"name": "superagent-json22",
"version": "0.0.1",
"description": "SuperAgent plugin introducing support for JSON22 requests payload",
"author": {
"name": "Dmitry Dutikov",
"email": "[email protected]"
},
"license": "MIT",
"repository": "github:dancecoder/superagent-json22",
"keywords": [
"json",
"serialization",
"NaN",
"Infinity",
"BigInt",
"types",
"superagent",
"plugin",
"json22"
],
"scripts": {
"test": "mocha"
},
"dependencies": {
"json22": "^0.0.7"
},
"devDependencies": {
"@types/superagent": "^4.1.15",
"superagent": "^7.1.1",
"supertest": "^6.2.2",
"mocha": "^9.2.0"
},
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"require": "./index.cjs",
"import": "./index.js"
}
}
}