-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.03 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
{
"name": "eslint-config-gluons",
"version": "6.1.0",
"description": "Gluons' personal ESLint shareable config.",
"main": "index.js",
"typings": "index.d.ts",
"files": [
"rules",
"esnext.js",
"esnext.d.ts",
"index.js",
"index.d.ts",
"mixed.js",
"mixed.d.ts",
"ts.js",
"ts.d.ts",
"vue.js",
"vue.d.ts",
"vue-ts.js",
"vue-ts.d.ts"
],
"engines": {
"node": ">=10"
},
"scripts": {
"prepublishOnly": "npm run build",
"clean": "del-cli ./*.{js,d.ts}",
"prebuild": "npm run clean",
"build": "tsc",
"lint": "eslint .",
"format": "prettier --write \"**/*.{json,ts,js,vue}\"",
"pretest": "npm run build",
"test": "jest",
"posttest": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluons/eslint-config-gluons.git"
},
"keywords": [
"❤️",
"eslint",
"eslintconfig",
"gluons"
],
"author": "Saran Tanpituckpong <sarunta@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gluons/eslint-config-gluons/issues"
},
"homepage": "https://gluons.github.io/eslint-config-gluons/",
"prettier": "@gluons/prettier-config",
"dependencies": {
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@gluons/prettier-config": "^2.0.3",
"@types/eslint": "^7.2.6",
"@types/jest": "^26.0.19",
"@types/node": "^12.19.9",
"del-cli": "^3.0.1",
"eslint": "^7.16.0",
"eslint-config-xo": "^0.36.0",
"eslint-config-xo-typescript": "^0.41.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"tsconfig-gluons": "^1.1.0",
"typescript": "^4.1.3",
"vue": "^2.6.12"
},
"peerDependencies": {
"eslint": "7",
"prettier": "2"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint-plugin-vue": "^7.3.0"
}
}