-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.2 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
{
"name": "lumiereWordpress",
"description": "Lumière Movies WordPress plugin",
"main": "gulpfile.js",
"private": true,
"keywords": [
"movies",
"taxonomy",
"widget",
"movie stars",
"imdb",
"wordpress",
"plugin",
"film"
],
"author": "JC Vignoli <[email protected]> (https://www.jcvignoli.com)",
"homepage": "https://github.com/jcvignoli/lumiere-movies#README",
"license": "GPL-3.0",
"scripts": {
"wpbuild": "wp-scripts build",
"wpstart": "wp-scripts start",
"watch": "gulp watch",
"build": "gulp build --clean yes",
"rsync": "gulp rsync",
"phpdoc": "phpDocumentor run",
"codeceptionRemote": "php vendor/bin/codecept run -vvv acceptanceRemote --env wpchrome",
"codeceptionLocal": "php vendor/bin/codecept run -vvv acceptanceLocal --env wpchrome",
"phpcs": "vendor/bin/phpcs --warning-severity=0 -s src --report=code --extensions=php | tee tmp/logs/Results-phpcs-wp.txt",
"phpcsPSR2": "vendor/bin/phpcs src --standard=PSR2 ./src --ignore=*vendor* --ignore=*js/highslide* > tmp/logs/Results-phpcs-PSR2.txt",
"phpmd": "vendor/bin/phpmd src html ./phpmd.xml.dist > tmp/logs/Results-phpmd.html",
"phpstan": "vendor/bin/phpstan -v | tee tmp/logs/Results-phpstan.txt",
"psalm": "vendor/bin/psalm --show-info=true --report=tmp/logs/Results-psalm.txt",
"psalm-clean": "rm -R tmp/cache/psalm && npm run psalm",
"phpdd": "vendor/bin/phpdd ./src --exclude $(grep -oP \"(?<=^exclude: )[^/]+\" phpdd.dist) | tee tmp/logs/Results-phpdd-deprecated.txt",
"phan": "vendor/bin/phan -k phan.php --output-mode=text -p | tee tmp/logs/Results-phan.txt",
"analysis": "npm-run-all -c phpcs phpmd phpstan phan phpdd psalm"
},
"devDependencies": {
"@wordpress/scripts": "*",
"browser-sync": "*",
"fs-extra": "*",
"gulp": "*",
"gulp-autoprefixer": "*",
"gulp-changed": "*",
"gulp-clean-css": "*",
"gulp-if": "*",
"gulp-imagemin": "*",
"gulp-notify": "*",
"gulp-plumber": "*",
"gulp-rename": "*",
"gulp-replace": "*",
"gulp-ssh": "*",
"gulp-terser": "*",
"node-notifier": "*",
"npm-run-all": "*"
},
"type": "module",
"overrides": {
"gulp-ssh": {
"ssh2": "^1.14.0"
}
}
}