-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
78 lines (78 loc) · 2.18 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@ibm/tekton-lint",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint --ext ts src",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
"test:debug": "node --experimental-vm-modules --no-warnings --inspect-brk node_modules/jest/bin/jest.js --runInBand",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"prebuild": "npm run format && npm run clean && npm run lint",
"build": "tsc --pretty",
"coverage": "jest --coverage",
"prepare": "husky install",
"release": "commit-and-tag-version --signoff"
},
"type": "module",
"version": "1.0.2",
"description": "Linter for Tekton definitions",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/IBM/tekton-lint.git"
},
"main": "dist/index.js",
"bin": {
"tekton-lint": "dist/lint.js"
},
"contributors": [
"Matthew White <[email protected]>",
"Bence Dányi <[email protected]>"
],
"files": [
"/dist",
".tektonlintrc.yaml"
],
"license": "Apache-2.0",
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"env-var": "^7.4.1",
"fast-glob": "^3.3.2",
"graphlib": "^2.1.8",
"minimist": "^1.2.8",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"source-map-support": "^0.5.21",
"strip-ansi": "^6.0.1",
"text-table": "^0.2.0",
"yaml": "^2.3.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@tsconfig/node20": "^20.1.2",
"@types/graphlib": "^2.1.12",
"@types/jest": "^29.5.10",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"commit-and-tag-version": "^12.1.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">= 20.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}