-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "public-post-preview",
"version": "0.0.0",
"private": true,
"description": "WordPress plugin to allow anonymous users to preview a post before it is published.",
"author": "Dominik Schilling",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress"
],
"repository": {
"type": "git",
"url": "https://github.com/ocean90/public-post-preview.git"
},
"homepage": "https://wordpress.org/plugins/public-post-preview/",
"bugs": {
"url": "https://github.com/ocean90/public-post-preview/issues"
},
"devDependencies": {
"@emotion/babel-plugin": "11.12.0",
"@emotion/css": "11.13.4",
"@wearerequired/browserslist-config": "0.3.0",
"@wearerequired/eslint-config": "6.0.0",
"@wordpress/babel-preset-default": "8.11.0",
"@wordpress/env": "10.11.0",
"@wordpress/scripts": "27.9.0",
"prettier": "npm:[email protected]",
"terser": "5.36.0"
},
"scripts": {
"build:legacy": "terser js/public-post-preview.js -o js/public-post-preview.min.js -c passes=2 -m",
"build": "NODE_ENV=production wp-scripts build",
"start": "wp-scripts start",
"lint-js": "wp-scripts lint-js",
"env": "wp-env"
},
"eslintConfig": {
"extends": [
"@wearerequired/eslint-config"
],
"rules": {
"@wordpress/i18n-text-domain": [
"error",
{
"allowedTextDomain": [
"public-post-preview"
]
}
]
}
},
"browserslist": [
"extends @wearerequired/browserslist-config/modern"
],
"dependencies": {
"@wordpress/icons": "10.12.0"
}
}