-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
103 lines (103 loc) · 3.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "feathers-swagger",
"description": "Add documentation to your Feathers services and feed them to Swagger UI.",
"version": "3.0.0",
"homepage": "https://feathersjs-ecosystem.github.io/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": ">= 14"
},
"scripts": {
"publish": "git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"release:prerelease": "npm version prerelease && npm publish --tag pre",
"release:premajor": "npm version premajor && npm publish --tag pre",
"changelog": "github_changelog_generator && git add docs/CHANGELOG.md && git commit -am \"chore: Update changelog\"",
"lint": "semistandard --fix",
"test:types": "tsd",
"mocha": "mocha --reporter-option maxDiffSize=0",
"coverage": "nyc --check-coverage npm run mocha",
"test": "npm run lint && npm run coverage && npm run test:types",
"test:ci": "npm run lint && npm run test:types && npm run coverage:ci",
"test:ci:cleanup": "git reset HEAD package.json package-lock.json && npm ci",
"coverage:ci": "npm run coverage:ci:v5 && npm run coverage:ci:v4 && nyc report",
"coverage:ci:v5": "nyc --silent npm run mocha",
"coverage:ci:v4": "npm run coverage:ci:v4:install && npm run coverage:ci:v4:nyc",
"coverage:ci:v4:install": "npm rm @feathersjs/koa @koa/router koa-mount koa-static && npm install @feathersjs/feathers@^4 @feathersjs/express@^4",
"coverage:ci:v4:nyc": "nyc --silent --no-clean npm run mocha",
"start": "node example/app",
"dev:docs": "docsify serve docs"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"types": "types/index.d.ts",
"dependencies": {
"lodash": "^4.17.21"
},
"peerDependencies": {
"swagger-ui-dist": ">=4.9.0",
"koa-static": "^5.0.0",
"koa-mount": "^4.0.0"
},
"peerDependenciesMeta": {
"swagger-ui-dist": {
"optional": true
},
"koa-static": {
"optional": true
},
"koa-mount": {
"optional": true
}
},
"devDependencies": {
"@feathersjs/express": "^5.0.12",
"@feathersjs/feathers": "^5.0.12",
"@feathersjs/koa": "^5.0.12",
"@feathersjs/schema": "^5.0.12",
"@feathersjs/typebox": "^5.0.12",
"@koa/router": "^12.0.1",
"@mairu/swagger-ui-apikey-auth-form": "^1.2.1",
"@types/serve-static": "^1.13.10",
"axios": "^1.6.2",
"chai": "^4.3.10",
"cors": "^2.8.5",
"feathers-memory": "^4.1.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"semistandard": "^17.0.0",
"swagger-parser": "^10.0.3",
"swagger-ui-dist": "^5.10.5",
"tsd": "^0.30.0"
}
}