-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.83 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
{
"name": "feathers-kong",
"description": "A Feathers service for Kong API Gateway admin API",
"version": "1.0.5",
"homepage": "https://github.com/dekelev/feathers-kong",
"keywords": [
"feathers",
"feathers-plugin",
"feathersjs",
"kong",
"kong-admin",
"api-gateway"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/dekelev/feathers-kong.git"
},
"author": {
"name": "Dekel Barzilay",
"email": "[email protected]"
},
"contributors": [],
"bugs": {
"url": "https://github.com/dekelev/feathers-kong/issues"
},
"engines": {
"node": ">= 14"
},
"main": "lib/",
"files": [
"lib"
],
"scripts": {
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"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",
"lint": "semistandard --fix lib/**/*.js test/**/*.js --config",
"mocha": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && npm run mocha",
"example": "node example/app"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/errors": "^4.5.16",
"node-fetch": "^2.6.9"
},
"devDependencies": {
"@feathersjs/express": "^4.5.16",
"@feathersjs/feathers": "^4.5.16",
"@feathersjs/socketio": "^4.5.16",
"body-parser": "^1.20.2",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"semistandard": "^16.0.1"
},
"nyc": {
"exclude": [
"test/**",
"example/**"
]
}
}