-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1007 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
{
"name": "api_faker",
"description": "Fake http api",
"author": {
"name": "Anson Chan"
},
"version": "0.0.5",
"dependencies": {
"express": "~4",
"lodash": "~4.17.20",
"node-watch": "~0.3.4",
"commander": "~2.5.0",
"http-proxy": "~1.18.1",
"body-parser": "~1.10.0",
"multer": "~0.1.6"
},
"devDependencies": {
"should": "~2.1.1",
"coffee-script": "~1.6.3",
"mocha": "~1.17.0"
},
"bin": {
"fakeApi": "./bin/fakeApi"
},
"scripts": {
"compile": "rm -rf ./lib && coffee --compile --output lib/ src/",
"prepublish": "npm run compile",
"build": "npm i -g .",
"debug": "npm run compile && node --debug-brk ./lib/index.js",
"test": "cd test && env NODE_ENV=test mocha **/*.coffee --compilers coffee:coffee-script --require should -R spec",
"debugtest": "cd test && env NODE_ENV=test mocha **/*.coffee --compilers coffee:coffee-script --require should -R spec --debug-brk",
"start": "coffee ./src/index.coffee"
}
}