-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "@teachiq/eslint-config",
"version": "3.3.0",
"publishConfig": {
"access": "public",
"registry": " https://npm.pkg.github.com"
},
"description": "The standard Teachiq linting config",
"repository": {
"type": "git",
"url": "git+https://github.com/Teachiq/eslint-config.git"
},
"bugs": {
"url": "https://github.com/Teachiq/eslint-config/issues"
},
"homepage": "https://github.com/Teachiq/eslint-config#readme",
"main": "index.js",
"scripts": {
"version": "echo $npm_package_version",
"postversion": "npm publish"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vue/eslint-config-typescript": "^11.0.2",
"deepmerge": "^4.3.0",
"eslint": "^8.34.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-file-progress": "^1.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^9.9.0"
},
"keywords": [
"eslint",
"config",
"lint",
"code",
"formatting"
],
"author": "Teachiq",
"license": "ISC",
"eslintConfig": {
"extends": [
"./vue.js",
"./vue3.js",
"./typescript.js",
"./vue-typescript.js",
"./vue3-typescript.js"
]
}
}