-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "@dipcode/prettier-config",
"version": "0.1.1",
"description": "Shareable Prettier config for Dipcode.",
"main": "index.json",
"scripts": {
"prettier:base": "prettier './**/*.{js,yml,json,md}'",
"lint": "npm run prettier:base -- --check",
"format": "npm run prettier:base -- --write",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dipcode-software/prettier-config-dipcode.git"
},
"keywords": [
"prettier",
"prettierconfig",
"prettier-config",
"dipcode"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dipcode-software/prettier-config-dipcode/issues"
},
"homepage": "https://github.com/dipcode-software/prettier-config-dipcode#readme",
"prettier": "@dipcode/prettier-config",
"lint-staged": {
"*.{js,yml,json,md}": "npm run format"
},
"devDependencies": {
"@dipcode/prettier-config": "0.1.0",
"husky": "8.0.3",
"lint-staged": "15.2.0"
},
"peerDependencies": {
"prettier": "^3.0.0"
}
}