-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.1 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/brigade-sdk",
"version": "placeholder",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Brigade Core Maintainers",
"license": "Apache-2.0",
"scripts": {
"test": "mocha --require ts-node/register --recursive ./test/**/*.ts",
"lint": "eslint src/ test/",
"build": "yarn install && tsc",
"style:check": "prettier --check .",
"style:fix": "prettier --write ."
},
"keywords": [
"kubernetes",
"brigade"
],
"files": [
"dist/"
],
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/eventsource": "^1.1.5",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"chai": "^4.2.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^9.2.0",
"prettier": "2.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"dependencies": {
"axios": "^0.21.2",
"event-source-polyfill": "^1.0.22",
"eventsource": "^2.0.2",
"js-base64": "^3.6.0",
"querystring": "^0.2.0"
}
}