-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "swaggerbank",
"version": "1.0.0",
"description": "A library to bridge Swagger API specification and Mountebanks Test-Double tool",
"main": "./src/index.js",
"scripts": {
"test": "PROP_GEN=static mocha test/**/*.test.js",
"test-travis": "PROP_GEN=static ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*.test.js",
"demo": "node ./demo/parse.demo.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tzinov15/swagger-bank.git"
},
"author": "Alex Tzinov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tzinov15/swagger-bank/issues"
},
"homepage": "https://github.com/Tzinov15/swagger-bank#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-subset": "^1.2.2",
"node-fetch": "^1.5.3",
"rewire": "^2.5.2",
"eslint": "^1.2.1",
"istanbul": "^0.4.4",
"validator": "^5.4.0",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"coveralls": "^2.11.9"
},
"dependencies": {
"btoa": "1.1.2",
"chance": "^1.0.3",
"colors": "^1.1.2",
"lodash": "^4.13.1",
"moment": "2.17.1",
"mountebank-helper": "^1.2.1",
"swagger-parser": "^3.4.1"
}
}