-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.38 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
{
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.3",
"@types/pg": "^8.6.1",
"chai": "^5.1.1",
"mocha": "^10.2.0",
"nyc": "^17.0.0",
"pg": "^8.7.1",
"ts-node": "^10.1.0",
"typescript": "^5.2.2"
},
"name": "@nebhale/service-bindings",
"version": "1.1.0",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "nyc --reporter lcovonly mocha *.spec.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags"
},
"keywords": [],
"author": "Ben Hale",
"license": "Apache-2.0",
"description": "A library to access [Service Binding Specification for Kubernetes](https://k8s-service-bindings.github.io/spec/) conformant Service Binding [Workload Projections](https://k8s-service-bindings.github.io/spec/#workload-projection).",
"dependencies": {
"@types/node": "^22.0.0"
},
"nyc": {
"exclude": "**/*.spec.ts"
},
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nebhale/client-nodejs.git"
},
"bugs": {
"url": "https://github.com/nebhale/client-nodejs/issues"
},
"homepage": "https://github.com/nebhale/client-nodejs#readme"
}