forked from IBM/tekton-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.33 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
{
"name": "tekton-lint",
"files": [
"utils.js",
"watch.js",
"lint.js",
"reporter.js",
"rules.js",
"collect-resources.js",
"Collector.js",
"runner.js",
"rules/*.js",
"rule-loader.js",
"walk.js",
".tektonlintrc.yaml",
"log-problems.js",
"formatters/*.js"
],
"scripts": {
"lint": "eslint './*.js' './rules/*.js' './regression-tests/*.js'",
"test": "jest",
"coverage": "jest --coverage"
},
"version": "0.4.1",
"description": "Linter for Tekton definitions",
"main": "runner.js",
"repository": {
"type": "git",
"url": "git@github.com:IBM/tekton-lint.git"
},
"bin": {
"tekton-lint": "lint.js"
},
"author": "Bence Dányi <bence.danyi@ibm.com>",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.4.0",
"fast-glob": "^3.2.2",
"graphlib": "^2.1.8",
"minimist": "^1.2.5",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0",
"yaml": "^1.8.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^26.0.1"
},
"engines": {
"node": ">= 12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}