-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.37 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
{
"name": "eslint-config-strajk",
"version": "0.0.6",
"description": "Personal ESLint configuration",
"keywords": [
"eslint",
"eslintconfig"
],
"homepage": "https://github.com/strajk/eslint-config-strajk#readme",
"bugs": {
"url": "https://github.com/strajk/eslint-config-strajk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strajk/eslint-config-strajk.git"
},
"license": "MIT",
"author": "Strajk",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"version": "npx @pika/pack"
},
"dependencies": {
"eslint": "~7.0.0",
"eslint-config-standard": "~14.1.0",
"eslint-config-standard-react": "~9.2.0",
"eslint-plugin-import": "~2.20.2",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-react": "~7.20.0",
"eslint-plugin-standard": "~4.0.0",
"eslint-plugin-vue": "~6.2.2",
"mocha": "~7.1.2",
"vue-eslint-parser": "~7.1.0"
},
"devDependencies": {
"@pika/pack": "~0.5.0",
"@pika/plugin-build-node": "~0.9.2",
"@pika/plugin-standard-pkg": "~0.9.2",
"eslint-find-rules": "~3.5.0"
},
"peerDependencies": {
"eslint": ">=7"
},
"engines": {
"node": ">=10.0.0"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-node"
]
]
}
}