-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.67 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
{
"name": "@pagely/really-rich-results",
"version": "0.1.3",
"description": "Really Rich Results",
"main": "assets/src/js/index.js",
"scripts": {
"build": "wp-scripts build",
"build:dist": "wp-scripts build && npm run clean && npm run build:mkdirs && npm run copy:php && npm run copy:assets && npm run composer:build:dist && npm run copy:vendor && npm run copy:readme && npm run build:zip",
"build:zip": "cd build/ && bestzip ../really-rich-results.zip *",
"build:mkdirs": "mkdir -p build/src && mkdir -p build/assets/dist && mkdir -p build/vendor",
"copy:php": "cp -r src/* build/src && cp really-rich-results.php build/really-rich-results.php",
"copy:assets": "cp -r assets/dist/* build/assets/dist && cp assets/src/images/* build/assets",
"copy:vendor": "cp -r vendor/* build/vendor",
"copy:readme": "cp README.txt build",
"clean": "rimraf ./build/**/* && npm run clean:vendor && npm run clean:zip",
"clean:vendor": "rimraf ./vendor",
"clean:zip": "rimraf ./really-rich-results.zip",
"composer:build:dist": "npm run composer:clean && npm run composer:install:dist && npm run composer:dump-autoload:dist",
"composer:clean": "rimraf ./vendor",
"composer:install:dist": "composer install --no-dev",
"composer:dump-autoload:dist": "composer dump-autoload -o --no-dev",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:md:js": "wp-scripts lint-md-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"start": "wp-scripts start",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pagely/really-rich-results.git"
},
"author": {
"name": "Pagely, Inc.",
"email": "rrr@pagely.com",
"url": "https://pagely.com"
},
"contributors": [
{
"name": "Jeff Matson",
"url": "https://jeffmatson.net"
}
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/pagely/really-rich-results/issues"
},
"homepage": "https://github.com/pagely/really-rich-results#readme",
"devDependencies": {
"@wordpress/scripts": "^17.1.0",
"bestzip": "^2.2.0",
"rimraf": "^3.0.2",
"sass": "^1.37.5",
"sass-loader": "^12.1.0"
},
"dependencies": {
"@wordpress/plugins": "^4.0.0",
"immer": "^9.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"resolutions": {
"**/**/trim": ">= 0.0.3"
}
}