-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
86 lines (86 loc) · 2.91 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
79
80
81
82
83
84
85
86
{
"name": "replicated-lint",
"author": "Replicated, Inc.",
"version": "0.19.3",
"engines": {
"node": ">=4.3.2"
},
"license": "MIT",
"repository": "https://github.com/replicatedhq/replicated-lint.git",
"bugs": {
"url": "https://github.com/replicatedhq/replicated-lint/issues"
},
"description": "Yaml Linting Tools for Replicated yaml",
"keywords": [
"yaml",
"rules",
"lint",
"replicated",
"studio"
],
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/",
"bin/"
],
"scripts": {
"fmt": "tsfmt -r",
"prepublish": "rm -rf ./dist && yarn run tslint && tsc -p .",
"test": "rm -rf ./dist && yarn run tslint && tsc -p . && mocha -r ts-node/register ./src/test/*.ts",
"rules": "rm -rf ./dist && yarn run tslint && tsc -p . && mocha -r ts-node/register ./src/test/rules.ts",
"cover": "rm -rf ./dist && yarn run tslint && tsc -p . && istanbul cover _mocha -- ./dist/test/*.js",
"cover-xml": "rm -rf ./dist && yarn run tslint && tsc -p . && istanbul cover _mocha -- -R mocha-junit-reporter ./dist/test/*.js",
"mintest": "yarn run tslint && mocha --recursive -R 'min' -r ts-node/register src/test/*.ts",
"tdd": "./tdd",
"tslint": "tslint --project ./tsconfig.json --exclude 'src/test/**/*'",
"tslintfix": "tslint --project ./tsconfig.json --fix",
"docs": "yarn run prepublish && bin/replicated-lint docs gen > docs/gen.md",
"lint": "yarn run prepublish && /usr/bin/env node ./dist/bin/stdin.js",
"report-coverage": "codeclimate-test-reporter < ./coverage/lcov.info",
"gen-schemas": "rm -rf ./dist && ./node_modules/.bin/typescript-json-schema ./tsconfig.json ReplicatedApp --ignoreErrors --out ./src/schemas/replicated.json --required true",
"publish-if-version-changed": "publish",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"bin": "bin/replicated-lint",
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/js-yaml": "^3.12.7",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.38",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^2.13.3",
"gaze-run-interrupt": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^10.0.0",
"mocha-jenkins-reporter": "^0.4.7",
"mocha-junit-reporter": "^2.0.2",
"publish": "^0.6.0",
"strip-ansi": "^4.0.0",
"tmp": "^0.2.1",
"ts-node": "^4.1.0",
"tslint": "^5.20.1",
"typemoq": "^1.8.0",
"typescript": "^4.7.2",
"typescript-json-schema": "^0.53.1"
},
"dependencies": {
"@types/json-schema": "^6.0.1",
"@types/tv4": "^1.2.31",
"chalk": "^1.1.3",
"js-yaml": "^3.14.1",
"junit-report-builder": "^3.0.0",
"line-column": "^1.0.2",
"lodash": "^4.17.21",
"pad": "^1.2.1",
"semver": "^5.7.1",
"snyk": "^1.946.0",
"tv4": "^1.3.0",
"url-parse": "^1.5.10",
"yaml-ast-parser": "^0.0.43",
"yargs": "^17.5.1"
},
"snyk": true
}