-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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
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
{
"name": "prettier-config-kbshl",
"version": "2.0.0",
"description": "Prettier shareable config for my Javascript based projects (Web and Mobile)",
"main": "index.js",
"scripts": {
"lint": "npm run --silent lint:markdown",
"lint:markdown": "markdownlint --config .markdownlint.json README.md",
"lint:commit": "commitlint -E HUSKY_GIT_PARAMS",
"format": "prettier --write '**/*.js'",
"test": ":",
"prepublishOnly": "safe-publish-latest",
"cm": "npx git-cz",
"release": "npx standard-version"
},
"files": [
"index.js",
".prettierignore"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kbshl/prettier-config-kbshl.git"
},
"keywords": [
"prettier",
"prettierconfig",
"javascript",
"style",
"styleguide",
"lint",
"mobile",
"app",
"alloy",
"titanium"
],
"author": {
"name": "Konstantin Büschel",
"email": "konstantin.bueschel+npm@gmail.com",
"url": "https://github.com/kbshl"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kbshl/prettier-config-kbshl/issues"
},
"homepage": "https://github.com/kbshl/prettier-config-kbshl#readme",
"peerDependencies": {
"prettier": ">=1.15.3"
},
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"cz-conventional-changelog": "2.1.0",
"husky": "1.2.1",
"lint-staged": "8.1.0",
"markdownlint-cli": "0.13.0",
"prettier": "1.15.3",
"safe-publish-latest": "1.1.2",
"standard-version": "4.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}