forked from feathersjs-ecosystem/feathers-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "feathers-swagger",
"description": "Add documentation to your Featherjs services and feed them to Swagger UI.",
"version": "0.5.0",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-swagger",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-swagger.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-swagger/issues"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run lint && npm run coverage",
"start": "npm run compile && node example/simple/app"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"greenkeeper": {
"ignore": [
"swagger-ui"
]
},
"dependencies": {
"lodash.pick": "^4.4.0"
},
"devDependencies": {
"@feathersjs/express": "^1.1.1",
"@feathersjs/feathers": "^3.0.0",
"body-parser": "^1.15.2",
"chai": "^4.0.0",
"cors": "^2.8.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"feathers": "^2.0.2",
"feathers-authentication": "^1.0.2",
"feathers-memory": "^2.0.0",
"feathers-rest": "^1.5.2",
"feathers-sequelize": "^3.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.0.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"semistandard": "^12.0.0"
}
}