forked from Tzinov15/mountebank-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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
{
"name": "mountebank-helper",
"version": "1.2.1",
"repository": "https://github.com/Tzinov15/mountebank-helper",
"description": "A simple Javascript wrapper to easily interface with Mountebank and not have to deal with its abstract object structure requirements.",
"main": "./src/index.js",
"scripts": {
"demo-update": "node demo/updateMultipleResponses.js",
"demo-format": "node demo/stateFormat.js",
"demo-basic": "node demo/basic.js",
"demo-regex": "node demo/regex_path.js",
"test": "./node_modules/mocha/bin/mocha test/*.test.js",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*.test.js"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [],
"author": "Alex Tzinov",
"license": "ISC",
"dependencies": {
"lodash": "^4.13.1",
"mountebank": "bbyars/mountebank",
"node-fetch": "^1.5.3",
"tcp-port-used": "^0.1.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-subset": "^1.2.2",
"coveralls": "^2.11.9",
"eslint": "^1.2.1",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"random-words": "0.0.1"
}
}