-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "swagger-api-server",
"version": "1.0.0",
"description": "A Swagger based REST API server",
"scripts": {
"test": "node node_modules/jasmine-node/lib/jasmine-node/cli.js --verbose --captureExceptions tests/",
"start": "node server/",
"api:test": "bash -c 'find ./swagger/api/* -exec node_modules/.bin/swagger validate \\{} \\; ' ",
"api:bundle": "bash -c 'node_modules/.bin/swagger bundle ./swagger/api/tags.yaml -o api-tags.yaml'",
"pretest": "npm run api:test"
},
"repository": {
"type": "git",
"url": ""
},
"author": "pianobit <info@pianobit.com> (http://pianobit.com)",
"dependencies": {
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"debug": "^2.3.3",
"express": "^4.14.0",
"json-schema-ref-parser": "^3.1.2",
"mongoose": "^4.7.2",
"morgan": "^1.7.0",
"statuses": "^1.3.1",
"swaggering-mongoose": "^0.3.1",
"swaggerize-express": "^4.0.5"
},
"devDependencies": {
"async": "^2.1.4",
"es6-error": "^4.0.0",
"eslint": "^3.12.0",
"jasmine-node": "^1.14.5",
"mockgoose": "^7.x",
"mongodb-prebuilt": "^6.x",
"swagger-cli": "^1.0.0-beta.2"
},
"engines": {
"node": ">4.4"
}
}