-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1006 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1006 Bytes
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
{
"name": "backstubber",
"version": "0.1.23",
"description": "Simple yet powerful backend stubs.",
"main": "src",
"repository": {
"type": "git",
"url": "git://github.com/bcluca/backstubber.git"
},
"bin": {
"backstubber": "bin/backstubber.js"
},
"author": "Luca Bernardo Ciddio",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"body-parser": "^1.13.3",
"commander": "^2.8.1",
"express": "^4.13.1",
"extend": "^3.0.0",
"glob": "^5.0.14"
},
"devDependencies": {
"chai": "^3.2.0",
"faker": "^3.0.1",
"hippie": "^0.4.0",
"jsdoc": "^3.3.2",
"latodoc": "smeijer/latodoc",
"mocha": "^2.2.5",
"sinon": "^1.16.0",
"sinon-chai": "^2.8.0"
},
"scripts": {
"docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"test": "mocha test"
},
"keywords": [
"json",
"service",
"backend",
"stub",
"mock",
"api",
"generators",
"fake",
"response"
]
}