-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
74 lines (74 loc) · 2.04 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
{
"name": "@mysticatea/eslint-plugin",
"version": "13.0.0",
"description": "Additional ESLint rules.",
"engines": {
"node": ">=8.10.0"
},
"main": "index.js",
"files": [
"lib"
],
"peerDependencies": {
"eslint": ">=6.6.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "~2.6.1",
"@typescript-eslint/parser": "~2.6.1",
"eslint-plugin-eslint-comments": "~3.1.2",
"eslint-plugin-eslint-plugin": "~2.1.0",
"eslint-plugin-node": "~10.0.0",
"eslint-plugin-prettier": "~3.1.1",
"eslint-plugin-vue": "~6.0.0",
"prettier": "~1.19.1",
"vue-eslint-parser": "^7.0.0"
},
"devDependencies": {
"@mysticatea/eslint-plugin": "file:.",
"codecov": "^3.6.1",
"eslint": "~6.6.0",
"fs-extra": "^8.1.0",
"globals": "^12.1.1",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"opener": "^1.5.1",
"rimraf": "^3.0.0",
"typescript": "~3.7.2"
},
"scripts": {
"clean": "rimraf .nyc_output coverage",
"coverage": "opener coverage/lcov-report/index.html",
"codecov": "codecov --disable=gcov -t $CODECOV_TOKEN",
"lint": "eslint lib scripts tests",
"test": "npm run -s lint && nyc mocha \"tests/lib/**/*.js\" --reporter dot",
"update": "node scripts/generate-browser-globals && node scripts/generate-configs && node scripts/generate-rules",
"preversion": "run-s clean update test",
"version": "eslint lib/rules --fix && git add lib",
"postversion": "git push && git push --tags",
"watch": "mocha \"tests/lib/**/*.js\" --reporter dot --watch --growl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysticatea/eslint-plugin.git"
},
"keywords": [
"eslint",
"eslintplugin",
"block",
"scope",
"instanceof",
"isArray",
"static",
"this",
"rest",
"spread",
"ignore"
],
"author": "Toru Nagashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/mysticatea/eslint-plugin/issues"
},
"homepage": "https://github.com/mysticatea/eslint-plugin#readme"
}