-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 904 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
{
"name": "@rigocorp/prettier-config",
"version": "1.3.1",
"description": "Rigoberto Corporation's Prettier configuration",
"homepage": "https://github.com/RigoCorp/prettier-config#readme",
"bugs": {
"url": "https://github.com/RigoCorp/prettier-config/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/RigoCorp/prettier-config.git"
},
"license": "MIT",
"author": "Rigoberto Corporation",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"prepare": "husky install",
"prettier": "npx prettier --write .",
"test": "npm run-script test-prettier",
"test-prettier": "npx prettier --check ."
},
"prettier": "./index.js",
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "3.0.3"
},
"peerDependencies": {
"prettier": "^3.0.3"
}
}