generated from 10up/plugin-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
73 lines (73 loc) · 1.89 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
{
"name": "@globeandmail/sophi-for-wordpress",
"version": "1.3.2",
"description": "WordPress VIP-compatible plugin for the Sophi.io Site Automation service.",
"homepage": "https://github.com/globeandmail/sophi-for-wordpress",
"bugs": {
"url": "https://github.com/globeandmail/sophi-for-wordpress/issues"
},
"license": "GPL-2.0-or-later",
"author": {
"name": "10up",
"email": "opensource@10up.com",
"url": "https://10up.com"
},
"contributors": [
{
"name": "The Globe and Mail",
"email": "info@sophi.io",
"url": "https://www.sophi.io"
}
],
"repository": {
"type": "git",
"url": "https://github.com/globeandmail/sophi-for-wordpress"
},
"scripts": {
"start": "10up-toolkit start",
"watch": "10up-toolkit watch",
"build": "10up-toolkit build",
"build:docs": "rm -rf docs && jsdoc -c hookdoc-conf.json sophi.php includes",
"format-js": "10up-toolkit format-js",
"lint-js": "10up-toolkit lint-js",
"lint-style": "10up-toolkit lint-style",
"test": "10up-toolkit test-unit-jest"
},
"devDependencies": {
"10up-toolkit": "4.3.1",
"jsdoc": "3.6.11",
"prop-types": "15.8.1",
"wp-hookdoc": "0.2.0"
},
"engines": {
"node": ">=12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.css": [
"10up-toolkit lint-style"
],
"*.js": [
"10up-toolkit lint-js"
],
"*.php": [
"./vendor/bin/phpcs"
]
},
"@10up/scripts": {
"entry": {
"sophi-tag": "./assets/js/frontend/sophi-tag.js",
"admin-style": "./assets/css/admin/admin-style.css",
"site-automation-block": "./includes/blocks/site-automation-block/index.js",
"sophi-page-list-item": "./includes/blocks/sophi-page-list-item/index.js"
}
},
"dependencies": {
"@10up/block-components": "^1.13.0",
"@wordpress/icons": "9.14.0"
}
}