-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.39 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": "helm-ts",
"version": "0.1.5",
"description": "A node client for interacting with helm based on the helm cli.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node index.ts",
"test": "jest",
"build": "tsc",
"build-dev": "npm run build && npm link"
},
"author": "Kevin Turcios <[email protected]> ([email protected])",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "26.0.15",
"@types/node": "^14.11.1",
"@types/proxyquire": "^1.3.28",
"@typescript-eslint/parser": "^4.1.1",
"babel-jest": "26.6.3",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.0",
"jest": "26.6.3",
"proxyquire": "^2.1.3",
"ts-jest": "26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.1"
},
"prepublish": "tsc",
"repository": {
"type": "git",
"url": "https://github.com/kturcios/helm-ts.git"
},
"keywords": [
"helm",
"typescript",
"helm3",
"kubernetes"
],
"files": [
"dist",
"package.json",
"README.md"
]
}