-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
107 lines (107 loc) · 2.71 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "acf-customizer",
"version": "0.3.2",
"description": "Use ACF Fields in customizer.",
"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",
"rollback": "git reset --hard HEAD~ && git push origin +master",
"i18n": "wp i18n make-pot . languages/acf-customizer.pot --domain=acf-customizer --exclude=tmp/*",
"audit": "./vendor/squizlabs/php_codesniffer/bin/phpcs . --report=code --standard=./phpcs-security.ruleset.xml -n -s > ./phpcs-report.txt || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com//acf-customizer.git"
},
"author": "Jörn Lund",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com//acf-customizer/issues"
},
"homepage": "https://github.com//acf-customizer#readme",
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.4",
"babelify": "^10.0.0",
"browserify": "^16.3.0",
"browserify-shim": "^3.8.14",
"event-stream": "^4.0.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"jquery-serializejson": "^3.2.1",
"sass": "^1.55.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"wpPlugin": {
"components": {
"core": {
"components": [],
"flags": [
"css",
"js"
]
},
"compat": {
"components": {
"acf": {
"flags": []
}
},
"flags": []
}
},
"name": "ACF Customizer",
"slug": "acf-customizer",
"prefix": "acf_customizer",
"textdomain": "acf-customizer",
"namespace": "ACFCustomizer",
"author": "mcguffin",
"author_uri": "https://github.com/mcguffin",
"year": 2019
},
"wporg": {
"steps": [
"build",
"git",
"github"
],
"type": "plugin",
"build": {
"versionedFiles": null,
"prebuild": [
"wp i18n make-pot . languages/acf-customizer.pot --domain=acf-customizer --exclude=tmp"
],
"build": [
"gulp build"
]
},
"git": {
"host": "github.com",
"user": "mcguffin"
},
"wporg": {
"assets": ".wporg",
"svn_user": "podpirate"
}
},
"browserslist": [
"last 3 versions",
"> 0.25%",
"IE 10"
],
"browserify-shim": {
"jquery": "global:jQuery"
}
}