-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "@awboost/eslint-config",
"version": "0.3.2",
"description": "Shared eslint config for awboost packages",
"type": "module",
"exports": {
".": "./lib/index.js",
"./install": "./lib/install.js"
},
"bin": "./lib/cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/awboost/eslint-config.git"
},
"keywords": [
"eslint"
],
"author": "Gordon Leigh",
"license": "ISC",
"bugs": {
"url": "https://github.com/awboost/eslint-config/issues"
},
"homepage": "https://github.com/awboost/eslint-config#readme",
"scripts": {
"build": "npm run clean && npm run compile && npm run lint",
"clean": "rm -rf lib/",
"compile": "tsc",
"lint": "eslint 'src/**/*.ts'",
"preversion": "npm run build"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^55.0.0"
},
"peerDependencies": {
"eslint": "^9",
"prettier": "^3"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^22.5.1",
"eslint": "^9.9.1",
"prettier": "^3.3.3",
"typescript": "~5.5"
},
"files": [
"src/",
"lib/",
"eslint.config.template.js"
],
"packageManager": "npm@10.8.3+sha512.d08425c8062f56d43bb8e84315864218af2492eb769e1f1ca40740f44e85bd148969382d651660363942e5909cb7ffcbef7ca0ae963ddc2c57a51243b4da8f56"
}