forked from Mastermindzh/code-style-conventions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.02 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
{
"name": "inforit-prettier-config",
"version": "1.0.0",
"description": "Inforit's preferred prettier config",
"main": "index.js",
"scripts": {
"patch": "npm --no-git-tag-version version patch",
"minor": "npm --no-git-tag-version version minor",
"major": "npm --no-git-tag-version version major",
"release": "git add -A && git commit -m 'version bump and build' && git push && npm publish --access public",
"release-patch": "npm run patch && npm run release",
"release-minor": "npm run minor && npm run release",
"release-major": "npm run major && npm run release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Inforitnl/prettier-config/prettier-config.git"
},
"keywords": [
"prettier",
"config",
"mastermindzh",
"rick van lieshout",
"lieshout"
],
"author": "Rick van Lieshout",
"license": "MIT",
"bugs": {
"url": "https://github.com/Inforitnl/prettier-config/issues"
},
"homepage": "https://github.com/Inforitnl/prettier-config#readme"
}