-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "@rasmuslp/eslint-config",
"version": "7.3.6",
"description": "My take on airbnb",
"homepage": "https://github.com/rasmuslp/eslint-config-rasmuslp#readme",
"bugs": {
"url": "https://github.com/rasmuslp/eslint-config-rasmuslp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rasmuslp/eslint-config-rasmuslp.git"
},
"license": "ISC",
"author": {
"name": "Rasmus Ljungmann Pedersen",
"email": "[email protected]"
},
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"lint": "npm run lint:ts",
"lint:all": "npm run lint:js && npm run lint:ts",
"lint:js": "eslint --no-eslintrc --config .eslintrc.json .",
"lint:ts": "eslint --no-eslintrc --config .eslintrc.typescript.json .",
"publish:beta": "np --no-publish --no-release-draft --any-branch",
"publish:release": "np --no-publish --no-release-draft",
"test": "npm run lint:all"
},
"dependencies": {
"@typescript-eslint/parser": "^7.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0"
},
"devDependencies": {
"@types/node": "18.19.66",
"@typescript-eslint/eslint-plugin": "7.18.0",
"eslint": "8.57.1",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.14.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "56.0.1",
"np": "10.1.0",
"typescript": "5.5.4"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-unicorn": "^56.0.0"
},
"engines": {
"node": ">=18.18.0"
},
"publishConfig": {
"access": "public"
}
}