-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.85 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
66
67
{
"name": "wp-robocrop",
"version": "1.2.7",
"description": "Focus point based image cropping in WordPress.",
"main": "js/wp-robocrop.combined.min.js",
"scripts": {
"dev": "gulp dev",
"dashicons": "node ./src/run/dashicons.js",
"i18n": "node src/run/json-i18n.js acf-dropzone",
"rollback": "git reset --hard HEAD~ && git push origin +master",
"init": "mkdir -p json/acf && mkdir -p json/post-type && mkdir -p json/taxonomy && mkdir -p src/php",
"test": "node ./src/run/test.js",
"dev-test": "./src/run/dev-test.sh",
"postinstall": "composer install",
"audit": "./vendor/squizlabs/php_codesniffer/bin/phpcs . --report=code --standard=./phpcs-security.ruleset.xml -n -s > ./phpcs-report.txt || exit 0",
"ver": "echo \"<?php return $(jq .version < ./package.json);\" > include/version.php"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcguffin/wp-robocrop.git"
},
"author": "Jörn Lund",
"license": "ISC",
"bugs": {
"url": "https://github.com/mcguffin/wp-robocrop/issues"
},
"homepage": "https://github.com/mcguffin/wp-robocrop#readme",
"devDependencies": {
"gulp": "*",
"gulp-autoprefixer": "*",
"gulp-concat": "*",
"gulp-rename": "*",
"gulp-sass": "*",
"gulp-sourcemaps": "*",
"gulp-uglify": "*",
"sass": "*"
},
"browserslist": [
"last 2 versions"
],
"wporg": {
"steps": [
"build",
"git",
"github"
],
"type": "plugin",
"build": {
"versionedFiles": null,
"prebuild": [
"wp i18n make-pot . languages/wp-robocrop.pot --domain=wp-robocrop --exclude=./tmp,./test"
],
"build": [
"gulp build",
"npm run ver"
]
},
"git": {
"host": "github.com",
"user": "mcguffin"
},
"wporg": {
"assets": ".wporg",
"svn_user": "podpirate"
}
}
}