-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.49 KB
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
61
{
"name": "swaggerui-node",
"version": "1.0.1",
"description": "Swagger UI for Node Express and Koa Frameworks",
"main": "lib/index.js",
"private": false,
"scripts": {
"koa": "node examples/koa/index.js",
"express": "node examples/express/index.js",
"dev:koa": "nodemon examples/koa/index.js",
"dev:express": "nodemon examples/express/index.js",
"lint": "standard lib/*.js examples/**/*.js tests/**/*.js",
"code-format": "standard --fix lib/*.js examples/**/*.js tests/**/*.js",
"test": "jest",
"precommit": "npm run lint",
"prepush": "npm run lint && npm test"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.{js,jsx}"
],
"verbose": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/lifecompilers/swaggerui-node.git"
},
"keywords": [
"Swagger",
"koa",
"express",
"node"
],
"author": "LifeCOMPILERS",
"license": "MIT",
"bugs": {
"url": "https://github.com/lifecompilers/swaggerui-node/issues"
},
"homepage": "https://github.com/lifecompilers/swaggerui-node#readme",
"dependencies": {
"handlebars": "4.0.11",
"lodash.defaultsdeep": "4.6.0"
},
"devDependencies": {
"express": "4.16.3",
"husky": "^0.14.3",
"jest": "23.0.0",
"koa": "2.5.1",
"koa-router": "7.4.0",
"nodemon": "1.17.5",
"standard": "11.0.1",
"supertest": "3.1.0",
"swagger-ui-dist": "3.15.0"
}
}