-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
60 lines (60 loc) · 1.66 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
58
59
60
{
"name": "sails-hook-swagger-generator",
"version": "0.0.0-development",
"description": "This is just a sails hook for generating swagger documentation json",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/theoomoregbee/sails-hook-swagger-generator.git"
},
"sails": {
"isHook": true
},
"scripts": {
"tsc": "tsc",
"lint": "eslint . --ext .ts",
"build": "npm run lint && tsc",
"dev": "nodemon -e ts --ignore '**/*.js' --exec \"npm run test\"",
"pretest": "npm run lint && npm run build",
"test": "node ./node_modules/mocha/bin/mocha build/test/bootstrap.test.js build/test/**/*.test.js",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"keywords": [
"sails",
"hook",
"swagger",
"openapi",
"json",
"generator"
],
"author": "Theophilus Omoregbee",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.4",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-schema-official": "^2.0.20",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"chai": "^4.1.1",
"eslint": "^6.8.0",
"mocha": "^3.5.0",
"sails": "^1.2.4",
"sails-disk": "^1.1.2",
"sails-hook-orm": "^2.1.1",
"semantic-release": "^17.0.7",
"travis-deploy-once": "^4.3.4",
"tslib": "^1.10.0",
"typescript": "^3.8.2"
},
"dependencies": {
"include-all": "^4.0.3",
"lodash": "^4.17.4",
"nodemon": "^2.0.2",
"request": "^2.88.2",
"swagger-jsdoc": "^4.0.0"
}
}