-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1020 Bytes
/
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
{
"name": "@eik/prettier-config",
"version": "1.0.1",
"description": "Shared prettier config for Eik modules",
"type": "module",
"exports": {
".": {
"default": "./lib/config.js"
}
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/eik-lib/prettier-config.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/eik-lib/prettier-config/issues"
},
"homepage": "https://github.com/eik-lib/prettier-config#readme",
"scripts": {
"clean": "rimraf node_modules",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [
"prettier",
"prettierconfig"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"prettier": ">= 3"
},
"devDependencies": {
"@eik/eslint-config": "1.0.0",
"@eik/semantic-release-config": "1.0.0",
"eslint": "9.8.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"semantic-release": "24.0.0"
}
}