-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "kube-service-bindings",
"version": "3.0.0",
"author": "",
"license": "Apache-2.0",
"typings": "index.d.ts",
"type": "commonjs",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"test": "nyc mocha --recursive",
"coverage": "nyc npm test && nyc report --reporter=html",
"prerelease": "npm run test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git://github.com/nodeshift/kube-service-bindings.git"
},
"files": [
"index.js",
"index.d.ts",
"clients/",
"utils/",
"options/",
"package-support.json",
"LICENSE"
],
"bugs": {
"url": "https://github.com/nodeshift/kube-service-bindings/issues"
},
"homepage": "https://github.com/nodeshift/kube-service-bindings",
"description": "helper for consuming kubernetes service bindings",
"keywords": [
"kubernetes",
"service bindings",
"bindings",
"kafka"
],
"engines": {
"node": ">=16"
},
"support": true,
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "~16.0.2",
"eslint-plugin-promise": "^6.5.0",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"standard-version": "^9.5.0"
}
}