-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "pulumi-helm-updater",
"version": "0.1.0",
"description": "Check for updates in pulumi managed helm",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint --ext ts .",
"lint:fix": "eslint --fix --ext ts .",
"package": "ncc build --target es2021 --license licenses.txt",
"package:build": "npm run build && npm run package",
"test": "jest"
},
"author": "LambArchie",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LambArchie/pulumi-helm-updater.git"
},
"homepage": "https://github.com/LambArchie/pulumi-helm-updater",
"bugs": {
"url": "https://github.com/LambArchie/pulumi-helm-updater/issues"
},
"keywords": [
"actions",
"helm",
"pulumi",
"updater"
],
"dependencies": {
"@actions/core": "1.10.0",
"axios": "1.3.4",
"js-yaml": "4.1.0",
"semver": "7.3.8"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.5.1",
"@types/js-yaml": "4.0.5",
"@types/node": "16.18.25",
"@types/semver": "7.3.13",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "5.59.2",
"@vercel/ncc": "0.36.1",
"eslint": "8.39.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
}
}