-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 871 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
{
"name": "mock-web-server",
"version": "0.9.2",
"description": "",
"main": "lib",
"dependencies": {
"body-parser": "^1.18.2"
},
"devDependencies": {
"async": "^2.5.0",
"coveralls": "^3.0.0",
"istanbul": "*",
"mocha": "^4.0.0",
"mocha-ui-exports": "^1.1.0",
"request": "^2.83.0",
"should": "^13.1.3"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/osher/mock-web-server.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "mocha",
"posttest": "npm run cover",
"prepush": "mocha",
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot && cat coverage/lcov.info | coveralls --verbose"
}
}