-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.41 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
{
"name": "mocknode",
"version": "1.2.3",
"description": "A configurable mock server with an intuitive configuration management interface and a http api",
"author": "Anunay Inuganti",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ianunay/mock-node.git"
},
"main": "server.js",
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "echo \"Warn: tests to be written\"",
"build-interface": "webpack -p --config src/webpack.config.js",
"build-server": "babel src/server.es6 > server.js"
},
"bin": {
"mocknode": "./bin/mocknode.js"
},
"keywords": [
"mock",
"dynamic",
"dynamic mocks",
"webserver",
"reverse proxy",
"proxy",
"nodejs",
"server"
],
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.5.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"react": "^0.14.7",
"react-bootstrap": "^0.28.3",
"react-dom": "^0.14.7",
"valid-url": "^1.0.9",
"webpack": "^1.12.14"
},
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.15.0",
"cookie-parser": "^1.4.2",
"express": "^4.13.4",
"express-http-proxy": "^0.6.0",
"fs-extra": "^0.30.0",
"minimist": "^1.2.0",
"object-assign": "^4.0.1",
"rimraf": "^2.5.2",
"sandcastle": "^1.3.3",
"tar-fs": "^1.12.0",
"winston": "^2.2.0"
}
}