-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "mockiji",
"description": "Simple, Fast and Powerful file-based Node.js mock server",
"homepage": "https://github.com/NijiDigital/mockiji",
"version": "2.1.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NijiDigital/mockiji.git"
},
"bugs": {
"url": "https://github.com/NijiDigital/mockiji/issues"
},
"nyc": {
"exclude": [
"test",
"**/node_modules/**",
"**/utils/PrettyLogStream.js"
]
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"dependencies": {
"bunyan": "^1.8.0",
"chalk": "^1.1.3",
"convict": "^3.0.0",
"cors": "^2.7.1",
"express": "^3.0.0",
"glob-all": "^3.0.1",
"jsonfile": "^2.3.1",
"merge": "^1.2.0",
"mv": "^2.1.1",
"yargs": "^7.0.2"
},
"main": "./src/index.js",
"scripts": {
"start": "mockiji",
"lint": "eslint ./src ./test",
"test": "nyc --reporter=lcov --reporter=text jasmine JASMINE_CONFIG_PATH=test/support/jasmine.json",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"bin": {
"mockiji": "./bin/mockiji"
},
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-plugin-jasmine": "^2.2.0",
"jasmine": "^2.6.0",
"jasmine-spec-reporter": "^4.1.0",
"nyc": "^10.3.2",
"request": "^2.81.0",
"request-promise-native": "^1.0.3",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz"
}
}