-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 901 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
{
"name": "easy-mock-server",
"version": "1.0.6",
"description": "A mock server for json and mock template files",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"watch": "babel src -d dist -w"
},
"bin": {
"easyMockServer": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geminate/easy-mock-server.git"
},
"keywords": [
"mock",
"server"
],
"author": "geminate",
"license": "MIT",
"bugs": {
"url": "https://github.com/geminate/easy-mock-server/issues"
},
"homepage": "https://github.com/geminate/easy-mock-server#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1"
},
"dependencies": {
"colors": "^1.3.1",
"commander": "^2.15.1",
"mockjs": "^1.0.1-beta3",
"optimist": "^0.6.1"
}
}