-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.29 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.29 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@broadshield/prettier-config",
"description": "Prettier configuration for Broadshield",
"main": "prettierrc.js",
"version": "0.3.9",
"repository": {
"type": "git",
"url": "git://github.com/broadshield/prettier-config.git",
"directory": "."
},
"author": "Jamie Nelson <jamie@wearsafe.com>",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.yarnpkg.com"
},
"keywords": ["prettier", "config", "prettier-config", "Broadshield"],
"engines": {
"node": ">=14.15.0"
},
"scripts": {
"format": "yarn exec prettier --write . --config .prettierrc.js --ignore-unknown",
"bump": "yarn version -i patch && yarn run release",
"bump:minor": "yarn version -i minor && yarn run release",
"build": "rimraf build && mkdir -p build && yarn pack --install-if-needed --out build/%s-%v.tgz",
"release": "git add .yarn package.json && git commit -m 'chore(release): bump version to ${npm_package_version}' && git tag -a v${npm_package_version} -m 'v${npm_package_version}' && yarn run postversion && yarn npm publish",
"postversion": "git push origin --follow-tags -f && git push --tags -f",
"precommit": "yarn exec pretty-quick --staged",
"prepare": "yarn exec husky install",
"corepack": "corepack enable",
"cachefolder": "corepack yarn config get cacheFolder"
},
"dependencies": {
"prettier": "*"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "latest",
"pretty-quick": "latest",
"rimraf": "latest"
},
"optionalDependencies": {
"@babel/parser": "*",
"@prettier/plugin-ruby": "*",
"@prettier/plugin-xml": "*",
"@typescript-eslint/parser": "*",
"@typescript-eslint/typescript-estree": "*",
"angular-html-parser": "*",
"eslint": "*",
"eslint-config-prettier": "*",
"graphql": "*",
"postcss": "*",
"postcss-scss": "*",
"prettier-package-json": "*",
"prettier-plugin-java": "*",
"prettier-plugin-properties": "*",
"prettier-plugin-sh": "*",
"remark-parse": "*",
"stylelint": "*",
"stylelint-config-prettier": "*",
"typescript": "*",
"typescript-eslint-language-service": "*",
"yaml": "*"
},
"lint-staged": {
"*": ["prettier --write", "git add"]
},
"packageManager": "yarn@3.2.1"
}