-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "mehpi",
"version": "2.0.1",
"description": "Simple External API Mocking via Sinon",
"main": "index.js",
"scripts": {
"check-coverage": "istanbul check-coverage && echo 'Coverage check successful!'",
"coverage": "NODE_ENV=test NODE_PATH=./lib istanbul cover ./node_modules/mocha/bin/_mocha -- $npm_package_options_mocha test/ && npm run check-coverage",
"test": "NODE_ENV=test NODE_PATH=./lib mocha $npm_package_options_mocha test/",
"lint": "standard --verbose | snazzy"
},
"options": {
"mocha": "--timeout 1000 --recursive --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Runnable/mehpi.git"
},
"keywords": [
"test",
"mock",
"http"
],
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"author": "Ryan Sandor Richards <[email protected]> (http://www.runnable.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Runnable/mehpi/issues"
},
"homepage": "https://github.com/Runnable/mehpi#readme",
"dependencies": {
"101": "^1.6.0",
"bluebird": "^3.4.1",
"debug": "^2.2.0",
"keypather": "^2.0.1",
"sinon": "^1.17.4"
},
"devDependencies": {
"bluebird": "^3.4.1",
"chai": "^3.5.0",
"code": "^3.0.1",
"istanbul": "^0.4.4",
"lab": "^10.8.2",
"mocha": "^2.5.3",
"request": "^2.72.0",
"standard": "^7.1.2"
}
}