-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
53 lines (53 loc) · 1.01 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
{
"name": "adonis-swagger",
"version": "1.3.0",
"description": "Swagger Provider for Adonis",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/japa",
"pretest": "npm run lint",
"coverage": "nyc npm run test",
"lint": "standard",
"lint:fix": "standard --fix"
},
"keywords": [
"adonis",
"swagger",
"documentation"
],
"author": "Ahmad Arif <[email protected]>",
"license": "MIT",
"dependencies": {
"swagger-jsdoc": "^1.9.7"
},
"repository": {
"type": "git",
"url": "https://github.com/ahmadarif/adonis-swagger"
},
"devDependencies": {
"@adonisjs/ace": "^5.0.0",
"@adonisjs/fold": "^4.0.7",
"coveralls": "^3.0.0",
"japa": "^1.0.6",
"japa-cli": "^1.0.1",
"nyc": "^11.4.1",
"standard": "^11.0.0"
},
"nyc": {
"reporter": [
"html",
"lcov",
"text",
"text-summary"
]
},
"standard": {
"ignore": [
"/templates/"
],
"globals": [
"use",
"make"
]
}
}