-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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
{
"name": "@podium/eslint-config",
"version": "1.0.7",
"description": "Shared ESLint config for Podium modules",
"type": "module",
"exports": {
".": {
"default": "./lib/default.js"
}
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/podium-lib/eslint-config.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/podium-lib/eslint-config/issues"
},
"homepage": "https://github.com/podium-lib/eslint-config#readme",
"scripts": {
"clean": "rimraf node_modules types",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [
"eslint",
"eslintconfig"
],
"author": "",
"license": "ISC",
"peerDependencies": {
"eslint": ">= 9"
},
"dependencies": {
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.3",
"globals": "15.14.0"
},
"devDependencies": {
"@podium/semantic-release-config": "2.0.0",
"eslint": "9.19.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"semantic-release": "24.2.1"
}
}