-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.69 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
56
57
58
59
60
{
"name": "auto-plugin-helm-chartmuseum",
"version": "0.1.2",
"description": "auto plugin for helm chart publishing",
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"dist"
],
"main": "dist/index.js",
"scripts": {
"ci:build": "npm run build",
"ci:test": "npm run test -- --coverage",
"ci:test:e2e": "npm run test:e2e",
"lint": "eslint .",
"format": "prettier --write .",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"services:start": "docker compose up -d chartmuseum",
"services:stop": "docker compose stop",
"services:remove": "docker compose rm --stop -f",
"test": "jest --testPathPattern=test/",
"test:e2e": "cd test-e2e && dotenv -e ../environments/test.env jest -- --testPathPattern=test-e2e/"
},
"author": "Eric Hayes <eric@deployfx.com>",
"license": "MIT",
"devDependencies": {
"@auto-it/all-contributors": "^10.46.0",
"@auto-it/first-time-contributor": "^10.46.0",
"@auto-it/released": "^10.46.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.2",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.45.0",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typed-rest-client": "^1.8.11",
"typescript": "^5.1.6"
},
"dependencies": {
"@auto-it/core": "^10.46.0",
"fp-ts": "^2.16.0",
"io-ts": "^2.2.20",
"semver": "^7.5.4"
},
"repository": "ejhayes/auto-plugin-helm-chartmuseum",
"auto": {
"plugins": [
"npm",
"all-contributors",
"first-time-contributor",
"released"
]
}
}