forked from BedrockStreaming/superagent-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "superagent-mock",
"description": "superagent plugin allowing to simulate HTTP calls by returning data fixtures based on the requested URL.",
"version": "3.5.0",
"keywords": [
"superagent",
"mock",
"isomorphic"
],
"bugs": "https://github.com/M6Web/superagent-mock/issues",
"license": "MIT",
"main": "./lib/superagent-mock.js",
"repository": {
"type": "git",
"url": "https://github.com/M6Web/superagent-mock"
},
"peerDependencies": {
"superagent": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.4.0",
"cross-env": "^5.0.0",
"eslint": "^3.19.0",
"jest": "20.0.3",
"rimraf": "^2.6.1",
"superagent": "^3.5.2"
},
"scripts": {
"clean": "rimraf lib es",
"test": "jest tests",
"lint": "eslint src tests",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "yarn build:commonjs && yarn build:es",
"prepublish": "yarn run clean && yarn lint && yarn build"
}
}