-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "req-json",
"version": "2.3.2",
"description": "Promise based simple HTTP/HTTPS client for browser to request JSON or string for RESTful apis, with koa-like middleware support.",
"keywords": [
"promise",
"http",
"https",
"request",
"response",
"ajax",
"xhr",
"xmlhttprequest",
"middleware",
"json",
"restful",
"weapp",
"wx",
"wechat"
],
"repository": {
"type": "git",
"url": "https://github.com/Cweili/req-json.git"
},
"author": "Cweili",
"license": "MIT",
"homepage": "https://req-json.github.io/",
"bugs": {
"url": "https://github.com/Cweili/req-json/issues"
},
"main": "dist/req-json.cjs.js",
"module": "dist/req-json.esm.js",
"unpkg": "dist/req-json.js",
"jsdelivr": "dist/req-json.js",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"postbuild": "eslint --fix *.js lib test",
"build": "rollup -c",
"test": "jest test --coverage",
"changelog": "conventional-changelog -p req-json -i CHANGELOG.md -s",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.4.4",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^27.0.4",
"jest": "^29.5.0",
"rollup": "^2.7.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-node-resolve": "^5.0.0",
"xhr-mock": "^2.5.1"
}
}