forked from SocialGouv/helm-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.58 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.58 KB
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": "@bertelli.luca/helm-schema",
"version": "1.3.0",
"main": "dist/index.js",
"license": "Apache-2.0",
"files": [
"dist",
"bin",
"package.json",
"yarn.lock",
"README.md"
],
"publishConfig": {
"access": "public"
},
"bin": "./bin/index.js",
"engines": {
"node": ">=16.17.0"
},
"scripts": {
"dev": "tsc --watch --outDir build",
"build": "ncc build ./src/index.ts",
"test": "jest",
"snapshots": "yarn build && yarn test -u && ./bin/index.js -f .github/e2e/values1.yaml > .github/e2e/values1.schema.json && ./bin/index.js -f .github/e2e/values2.yaml > .github/e2e/values2.schema.json && ./bin/index.js -f .github/e2e/values3.yaml > .github/e2e/values3.schema.json",
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"comment-parser": "^1.4.0",
"yaml": "^2.3.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/js-yaml": "^4.0.5",
"@types/json-schema": "^7.0.12",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.48.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.4",
"semantic-release": "^25.0.3",
"ts-jest": "^29.1.1",
"tsc": "^2.0.4",
"typescript": "^5.2.2"
}
}