-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1017 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1017 Bytes
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
{
"name": "bluerose-publishers",
"version": "1.0.0",
"description": "Bluerose Publishers API",
"main": "index.js",
"repository": "git@github.com:WEBNOO-Technologies-Pvt-Ltd/BlueRose-V2.0.git",
"author": "Arpit Patidar <arpit.ptdr@hotmail.com>",
"private": true,
"scripts": {
"commit": "git-cz",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@prettier/plugin-php": "^0.22.1",
"commitizen": "^4.3.1",
"enforce-branch-name": "^1.1.2",
"husky": "^9.1.6",
"lint-staged": "^15.3.0",
"prettier": "^3.3.3"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"**/*.php": [
"./vendor/bin/pint",
"./vendor/bin/phpstan analyse --memory-limit=512M"
]
}
}