-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 KB
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
{
"name": "@agilecontent/prettier-config",
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "restricted"
},
"version": "1.0.2",
"description": "Base configuration for Prettier",
"main": "index.json",
"scripts": {
"build": "node -e \"const fs=require('fs');fs.accessSync('index.json')\"",
"publish:github": "npm run build && npm publish",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agilecontent/prettier-config.git"
},
"author": "Thiago 'Jedi' Cerqueira <thiago.cerqueira@agilecontent.com>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/agilecontent/prettier-config/issues"
},
"homepage": "https://github.com/agilecontent/prettier-config#readme",
"peerDependencies": {
"prettier": "^2.0.0"
},
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.4.1"
},
"lint-staged": {
"*.{md,json}": "prettier --config index.json --write"
}
}