-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
123 lines (123 loc) · 3.3 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "acf-quickedit-fields",
"version": "3.3.8",
"description": "Enter description here.",
"main": "js/acf-qef-field-group.min.js",
"scripts": {
"dev": "gulp dev",
"dashicons": "node ./src/run/dashicons.js",
"test": "node ./src/run/test.js",
"dev-test": "./src/run/dev-test.sh",
"i18n": "wp i18n make-pot . languages/acf-quickedit-fields.pot --domain=acf-quickedit-fields --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.ruleset.xml -n -s > ./phpcs-report.txt || exit 0",
"ver": "echo \"<?php return $(jq .version < ./package.json);\" > include/version.php",
"fieldkey": "php -r \"echo uniqid(\\\"field_\\\") . \\\"\n\\\";\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcguffin/acf-quickedit-fields.git"
},
"author": "Jörn Lund",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mcguffin/acf-quickedit-fields/issues"
},
"homepage": "https://github.com/mcguffin/acf-quickedit-fields#readme",
"browserslist": [
"last 3 versions",
"> 0.25%",
"IE 10"
],
"browserify-shim": {
"jquery": "global:jQuery"
},
"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-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"sass": "^1.38.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"engines": {},
"wpPlugin": {
"components": {
"core": {
"components": [],
"flags": []
},
"git": {
"user": "mcguffin",
"remote": "[email protected]:mcguffin/acf-quickedit-fields.git"
},
"admin": {
"components": {},
"flags": [
"css",
"js"
]
},
"compat": {
"components": {
"polylang": {
"flags": []
}
},
"flags": []
},
"ajax": {
"components": {},
"flags": []
}
},
"name": "ACF QuickEdit Fields",
"slug": "acf-quickedit-fields",
"prefix": "acf_quickedit_fields",
"textdomain": "acf-quickedit-fields",
"namespace": "ACFQuickEdit",
"author": "mcguffin",
"author_uri": "https://github.com/mcguffin",
"year": 2019
},
"wporg": {
"steps": [
"build",
"git",
"github",
"wporg"
],
"type": "plugin",
"build": {
"versionedFiles": null,
"prebuild": [
"wp i18n make-pot . languages/acf-quickedit-fields.pot --domain=acf-quickedit-fields --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-quickedit-fields/"
}
}
}