-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@oldschoolgg/eslint-config",
"version": "1.2.7",
"description": "Shareable TypeScript configuration and ESLint rules for all Oldschoolgg Projects",
"author": "@oldschoolgg",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/oldschoolgg/config/",
"scripts": {
"prelint": "npm run build",
"lint": "eslint \"{src,ts-config}/**/*.ts\" --fix",
"build": "tsc -b src",
"prepublishOnly": "node scripts/prepublish.mjs",
"postpublish": "node scripts/postpublish.mjs",
"test": "eslint \"{src,ts-config}/**/*.ts\""
},
"peerDependencies": {
"typescript": "3.x || 4.x"
},
"files": [
"tsconfig.json",
"dist",
"!dist/.tsbuildinfo"
],
"engines": {
"node": ">=12",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oldschoolgg/config.git"
},
"bugs": {
"url": "https://github.com/oldschoolgg/config/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^14.11.8",
"eslint": "^8.20.0",
"fs-extra": "^9.0.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^43.0.2",
"prettier": "^2.7.1"
}
}