-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.06 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
{
"name": "eslint-config-blockabc",
"version": "0.15.4",
"description": "A All-in-One eslint config project based on Standard Style",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"test": "npm run test:javascript & npm run test:typescript & npm run test:vue & npm run test:vue-ts & npm run test:nuxt & npm run test:nuxt-ts",
"test:javascript": "eslint -c index.js test/javascript.js",
"test:typescript": "eslint -c typescript.js test/typescript.ts test/javascript.js",
"test:vue": "eslint -c vue.js test/vue.vue test/vue3.vue test/javascript.js",
"test:nuxt": "eslint -c nuxt.js test/nuxt.vue test/javascript.js test/nuxt.config.js",
"test:vue-ts": "eslint -c vue-ts.js test/vue-ts.vue test/typescript.ts",
"test:nuxt-ts": "eslint -c nuxt-ts.js test/nuxt-ts.vue test/typescript.ts test/javascript.js"
},
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"standard",
"blockabc",
"typescript",
"vue",
"nuxt",
"blockchain"
],
"author": "JeffJing",
"repository": {
"type": "git",
"url": "[email protected]:BlockABC/eslint-config-blockabc.git"
},
"homepage": "https://github.com/BlockABC/eslint-config-blockabc",
"license": "MIT",
"peerDependencies": {
"eslint": "^8.17.0",
"typescript": "^4.7.3",
"@babel/eslint-parser": "^7.18.2"
},
"devDependencies": {
"@types/node": "^17.0.40",
"@babel/eslint-parser": "^7.18.2",
"eslint": "^8.17.0",
"nuxt": "^2.15.8",
"typescript": "^4.7.3"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^9.1.0",
"vue-eslint-parser": "^9.0.2"
}
}