-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
98 lines (98 loc) · 2.75 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
{
"name": "eslint-plugin-gridsome",
"version": "1.6.2",
"keywords": [
"eslint",
"eslintplugin",
"vue",
"gridsome"
],
"homepage": "https://github.com/gridsome/eslint-plugin-gridsome",
"bugs": {
"url": "https://github.com/gridsome/eslint-plugin-gridsome/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gridsome/eslint-plugin-gridsome.git"
},
"license": "MIT",
"author": "tyankatsu <[email protected]> (https://tyankatsu.netlify.com/)",
"main": "dist/lib/index.js",
"files": [
"LICENSE",
"README.md",
"dist",
"package.json"
],
"scripts": {
"_docs:build": "vuepress build docs",
"_docs:dev": "vuepress dev docs",
"_log:lint": "eslint log/tests/* --rulesdir log/rules",
"_log:print": "run-s _log:lint > log/log.json",
"build": "tsc --project ./tsconfig.build.json",
"precommit": "lint-staged",
"commit": "git-cz",
"confirm": "eslint ./development**/* --fix --ext .vue --rulesdir dist/lib/rules",
"docs:build": "run-s build _docs:build",
"docs:dev": "run-s build _docs:dev",
"gen:development": "hygen generate development",
"gen:log": "hygen generate log",
"gen:rule": "hygen generate rule",
"lint-staged": "lint-staged",
"log": "npm run _log:print --silent",
"release": "shipjs prepare",
"test": "mocha --require ts-node/register tests/lib/**/*.spec.ts",
"typecheck": "tsc --project ./tsconfig.build.json --noEmit",
"update": "ts-node tools/update.ts"
},
"lint-staged": {
"*.md": [
"prettier --write"
],
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^3.3.0",
"minimatch": "^3.0.4",
"prettier": "^2.0.5",
"vue-eslint-parser": "^7.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/eslint": "^7.2.6",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^8.2.0",
"@types/prettier": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"all-contributors-cli": "^6.19.0",
"chai": "^4.2.0",
"change-case": "^4.1.2",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"hygen": "^6.0.4",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.5",
"shipjs": "0.23.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"vuepress": "^1.7.1"
},
"peerDependencies": {
"eslint": "^6.2.0 || ^7.0.0",
"minimatch": "^3.0.4"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^13.0.0 || >=14.0.0"
},
"publishConfig": {
"access": "public"
}
}