forked from ota-meshi/eslint-plugin-yml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.78 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "eslint-plugin-yml",
"version": "1.1.0",
"description": "This ESLint plugin provides linting rules for YAML.",
"main": "lib/index.js",
"files": [
"lib"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"scripts": {
"prebuild": "npm run -s clean",
"build": "npm run build:ts",
"build:ts": "tsc --project ./tsconfig.build.json",
"clean": "rimraf .nyc_output dist coverage",
"lint": "eslint . --ext .js,.vue,.ts,.json,.md,.yml,.yaml",
"eslint-fix": "eslint . --ext .js,.vue,.ts,.json,.md,.yml,.yaml --fix",
"pretest:base": "cross-env DEBUG=eslint-plugin-yml*",
"test:base": "npm run mocha -- \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
"test": "npm run test:base",
"cover": "nyc --reporter=lcov npm run test:base",
"test:debug": "npm run mocha -- \"tests/src/**/*.ts\" --reporter dot",
"update": "npm run ts -- ./tools/update.ts && npm run eslint-fix && npm run cover",
"new": "npm run ts -- ./tools/new-rule.ts",
"predocs:watch": "npm run build:ts",
"docs:watch": "export NODE_OPTIONS=--openssl-legacy-provider && vuepress dev --debug docs",
"docs:build": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build:ts && vuepress build docs --no-cache",
"preversion": "npm test && git add .",
"version": "env-cmd -e version npm run update && git add .",
"update-fixtures": "npm run ts -- ./tools/update-fixtures.ts && npm run eslint-fix",
"ts": "node -r esbuild-register",
"mocha": "npm run ts -- ./node_modules/mocha/bin/mocha.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ota-meshi/eslint-plugin-yml.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"yaml",
"yml"
],
"author": "Yosuke Ota",
"funding": "https://github.com/sponsors/ota-meshi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ota-meshi/eslint-plugin-yml/issues"
},
"homepage": "https://ota-meshi.github.io/eslint-plugin-yml/",
"dependencies": {
"debug": "^4.3.2",
"lodash": "^4.17.21",
"natural-compare": "^1.4.0",
"yaml-eslint-parser": "^1.1.0"
},
"peerDependencies": {
"eslint": ">=6.0.0"
},
"devDependencies": {
"@ota-meshi/eslint-plugin": "^0.11.0",
"@types/debug": "^4.1.5",
"@types/eslint": "^8.0.0",
"@types/eslint-scope": "^3.7.0",
"@types/eslint-visitor-keys": "^1.0.0",
"@types/estree": "^1.0.0",
"@types/lodash": "^4.14.158",
"@types/mocha": "^9.0.0",
"@types/natural-compare": "^1.4.0",
"@types/node": "^16.11.3",
"@types/semver": "^7.3.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"cross-env": "^7.0.2",
"env-cmd": "^10.1.0",
"esbuild": "^0.14.1",
"esbuild-register": "^3.2.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^5.0.0",
"eslint-plugin-json-schema-validator": "^4.0.0",
"eslint-plugin-jsonc": "^2.0.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-node-dependencies": "^0.9.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-regexp": "^1.0.0",
"eslint-plugin-vue": "^9.0.0",
"eslint-plugin-yml": "^1.0.0",
"eslint4b": "^7.3.1",
"espree": "^9.0.0",
"mocha": "^10.0.0",
"monaco-editor": "^0.33.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"raw-loader": "^4.0.1",
"semver": "^7.3.2",
"stylelint": "^14.9.1",
"stylelint-config-recommended-vue": "^1.0.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-stylus": "^0.16.1",
"typescript": "~4.7.0",
"vue-eslint-editor": "^1.1.0",
"vue-eslint-parser": "^9.0.0",
"vuepress": "^1.5.2",
"yaml": "^2.1.1"
}
}