-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "mockd",
"version": "0.3.0",
"description": "mock domain tool",
"main": "mockd.js",
"scripts": {
"start": "npm run build && node bin/mockd.js",
"dev": "nodemon src/mockd.js --exec babel-node",
"build": "babel src -d bin"
},
"bin": {
"mockd": "./bin/mockd.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/joway/mockd.git"
},
"author": "Joway",
"license": "MIT",
"bugs": {
"url": "https://github.com/joway/mockd/issues"
},
"homepage": "https://github.com/joway/mockd#readme",
"dependencies": {
"http-proxy": "^1.16.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"nodemon": "^1.11.0"
}
}