-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.64 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
{
"name": "frocentric-wordpress",
"version": "1.8.0",
"description": "[](https://packagist.org/packages/roots/bedrock) [](https://travis-ci.org/roots/bedrock)",
"main": "index.js",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^12.1.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"lint-staged": ">=13",
"prettier": "^2.2.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"commitizen": "cz"
},
"repository": {
"type": "git",
"url": "git+https://Genyus@github.com/frocentric/wordpress.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/frocentric/wordpress/issues"
},
"homepage": "https://github.com/frocentric/wordpress#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-length": [
1,
"always",
72
],
"footer-max-length": [
1,
"always",
72
],
"header-max-length": [
2,
"always",
50
]
}
}
}