-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "app",
"version": "0.2.1",
"description": "Viterbit pdfimages-extractor",
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^11.0.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0",
"ini": "^1.3.6",
"lint-staged": "^10.4.0",
"standard-version": "^9.3.0",
"y18n": ">=4.0.1"
},
"scripts": {
"release": "HUSKY_SKIP_HOOKS=1 standard-version",
"cz": "cz",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "[email protected]:viterbit/pdfimages-extractor.git"
},
"author": "Marcos Gómez <[email protected]>",
"license": "proprietary",
"homepage": "https://github.com/viterbit/pdfimages-extractor",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && cz --hook || true",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.php": [
"./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --verbose",
"./vendor/bin/phpcbf --standard=phpcs.xml.dist",
"composer run phpstan",
"./vendor/bin/var-dump-check --symfony"
]
}
}