-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
83 lines (83 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
{
"name": "distributor",
"version": "2.0.6",
"description": "Distributor is a WordPress plugin that makes it easy to distribute and reuse content across your websites — whether in a single multisite or across the web.",
"author": {
"name": "10up",
"email": "[email protected]",
"url": "https://10up.com"
},
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"WordPress-Plugin",
"Syndication"
],
"homepage": "https://github.com/10up/distributor#readme",
"repository": "git+https://github.com/10up/distributor.git",
"bugs": {
"url": "https://github.com/10up/distributor/issues"
},
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"mustache": "^4.2.0"
},
"devDependencies": {
"@10up/cypress-wp-utils": "^0.4.0",
"@wordpress/env": "^10.5.0",
"@wordpress/scripts": "^26.19.0",
"compare-versions": "^4.1.3",
"cypress": "^13.1.0",
"cypress-mochawesome-reporter": "^3.5.1",
"eslint-plugin-cypress": "^2.12.1",
"jsdoc": "^4.0.2",
"mochawesome-json-to-md": "^0.7.2",
"node-wp-i18n": "^1.2.6",
"taffydb": "^2.7.3",
"wp-hookdoc": "^0.2.0"
},
"scripts": {
"build": "wp-scripts build",
"build:docs": "rm -rf docs-built && jsdoc -c hookdoc-conf.json distributor.php includes",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "npm run format:css; npm run format:js",
"format:css": "wp-scripts lint-style --fix",
"format:js": "wp-scripts lint-js --fix",
"lint": "npm run lint:css; npm run lint:js; npm run lint:pkg-json",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"makepot": "./bin/generate-pot-with-wpcli.sh",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start",
"release": "wp-scripts build; npm run makepot; wp-scripts build --config ./webpack.config.release.js",
"cypress:open": "cypress open --config-file tests/cypress/config.js --e2e --browser chrome",
"cypress:run": "cypress run --config-file tests/cypress/config.js",
"env": "wp-env",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"env:destroy": "wp-env destroy",
"to-multisite": "wp-env run tests-cli wp core multisite-convert --title='Distributor Multisite'",
"copy-htaccess": "wp-env run tests-cli cp wp-content/plugins/distributor/tests/cypress/.htaccess .htaccess",
"postenv:start": "./tests/bin/initialize.sh"
},
"files": [
"readme.txt",
"README.md",
"CHANGELOG.md",
"composer.json",
"distributor.php",
".github/workflows/*",
".gitattributes",
"assets/img/*",
"dist/**/*",
"includes/**/*",
"lang/**/*",
"templates/**/*",
"vendor/yahnis-elsts/plugin-update-checker/**/*"
]
}