-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "superagent-mock",
"description": "superagent plugin allowing to simulate HTTP calls by returning data fixtures based on the requested URL.",
"version": "5.0.1",
"keywords": [
"superagent",
"mock",
"isomorphic"
],
"bugs": "https://github.com/M6Web/superagent-mock/issues",
"license": "MIT",
"main": "lib/superagent-mock.js",
"module": "es/superagent-mock.js",
"repository": {
"type": "git",
"url": "git+https://github.com/M6Web/superagent-mock.git"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"superagent": ">=8.0.9"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/preset-env": "^7.13.10",
"core-js": "^3.4.7",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"rimraf": "^3.0.0",
"superagent": "8.0.9"
},
"scripts": {
"ci": "yarn clean && yarn lint && yarn build && yarn test",
"clean": "rimraf lib es",
"test": "jest tests",
"lint": "eslint src tests",
"build": "cross-env babel src --out-dir lib",
"prepublishOnly": "yarn ci"
}
}