forked from theoomoregbee/sails-hook-swagger-generator
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "sails-hook-swagger-generator",
"version": "0.0.0-development",
"description": "This is just a sails hook for generating swagger documentation json",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/theo4u/sails-hook-swagger-generator.git"
},
"sails": {
"isHook": true
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha test/bootstrap.test.js test/**/*.test.js",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"sails",
"hook",
"swagger",
"openapi",
"json",
"generator"
],
"author": "Theophilus Omoregbee",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.1",
"lodash": "^4.17.4",
"mocha": "^3.5.0",
"sails": "^1.1.0",
"sails-disk": "^1.1.2",
"sails-hook-orm": "^2.1.1",
"semantic-release": "7.0.2",
"swagger-jsdoc": "^3.4.0",
"travis-deploy-once": "^4.3.4"
}
}