forked from mcguffin/acf-openstreetmap-field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "acf-openstreetmap-field",
"version": "1.3.5",
"description": "A configurable OpenStreetMap Field to ACF.",
"private": true,
"scripts": {
"dev": "gulp dev",
"test": "node ./src/run/test.js",
"dev-test": "./src/run/dev-test.sh",
"dashicons": "node ./src/run/dashicons.js",
"i18n": "wp i18n make-pot . languages/acf-openstreetmap-field.pot --domain=acf-openstreetmap-field --exclude=tmp/*",
"rollback": "git reset --hard HEAD~ && git push origin +master",
"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/acf-openstreetmap-field.git"
},
"author": "Jörn Lund",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mcguffin/acf-openstreetmap-field/issues"
},
"browserslist": [
"last 3 versions",
"> 0.125%",
"IE 10"
],
"homepage": "https://github.com/mcguffin/acf-openstreetmap-field#readme",
"devDependencies": {
"@selfisekai/gulp-sass": "^4.2.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-uglifycss": "^1.1.0",
"leaflet": "1.8",
"leaflet-control-geocoder": "2.4",
"leaflet-providers": "1.13",
"leaflet.locatecontrol": "^0.76.1",
"resize-observer-polyfill": "^1.5.1",
"uglify-es": "^3.3.9"
},
"dependencies": {
"jquery": "^3.5.1",
"sass": "^1.30.0"
},
"wporg": {
"steps": [
"build",
"git",
"wporg"
],
"type": "plugin",
"build": {
"versionedFiles": null,
"prebuild": [
"wp i18n make-pot . languages/acf-openstreetmap-field.pot --domain=acf-openstreetmap-field --exclude=tmp"
],
"build": [
"gulp build",
"npm run ver"
]
},
"git": {
"host": "github.com",
"user": "mcguffin"
},
"wporg": {
"assets": ".wporg",
"svn_user": "podpirate",
"svn": "https://plugins.svn.wordpress.org/acf-openstreetmap-field/"
}
}
}