forked from brigadecore/brigadier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "@brigadecore/brigadier",
"version": "placeholder",
"description": "Brigade library for pipelines and events",
"main": "out/index.js",
"types": "out/index.d.ts",
"author": "Brigade Core Maintainers",
"license": "Apache-2.0",
"homepage": "https://github.com/brigadecore/brigadier",
"bugs": {
"url": "https://github.com/brigadecore/brigadier/issues"
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "mocha --require ts-node/register --recursive ./test/**/*.ts"
},
"keywords": [
"kubernetes",
"brigade"
],
"files": [
"out/*.js",
"out/*.ts"
],
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"@types/node": "^10.3.0",
"chai": "^4.1.0",
"mocha": "^6.2.0",
"prettier": "^1.9.1",
"rimraf": "^2.6.2",
"ts-node": "^7.0.0",
"typedoc": "^0.15.0",
"typescript": "^3.2.2"
},
"dependencies": {
"@kubernetes/client-node": "^0.10.1",
"child-process-promise": "^2.2.1",
"pretty-error": "^2.1.1",
"ulid": "^0.2.0"
}
}