-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
64 lines (64 loc) · 2.1 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
{
"name": "@10up/simple-podcasting",
"version": "1.8.1",
"description": "A simple podcasting solution for WordPress. ",
"homepage": "https://github.com/10up/simple-podcasting",
"bugs": {
"url": "https://github.com/10up/simple-podcasting/issues"
},
"license": "GPL-2.0-or-later",
"author": {
"name": "10up",
"email": "[email protected]",
"url": "https://10up.com",
"role": "developer"
},
"repository": {
"type": "git",
"url": "https://github.com/10up/simple-podcasting"
},
"scripts": {
"start": "wp-scripts start",
"build": "wp-scripts build",
"deploy": "npm install && npm run build",
"makepot": "wpi18n makepot --domain-path languages --pot-file simple-podcasting.pot --type plugin --main-file simple-podcasting.php --exclude node_modules,tests,docs,vendor",
"prebuild": "npm run makepot",
"prepare": "husky install",
"wp-env": "wp-env",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"cypress:open": "cypress open --browser chrome --config-file tests/cypress/config.config.js",
"cypress:run": "cypress run --browser chrome --config-file tests/cypress/config.config.js"
},
"lint-staged": {
"*.php": [
"./vendor/bin/phpcs --standard=10up-Default --extensions=php --warning-severity=8 -s --runtime-set testVersion 7.4"
],
"tests/**/*.js": [
"./node_modules/.bin/wp-scripts format"
]
},
"devDependencies": {
"@10up/cypress-wp-utils": "^0.3.0",
"@wordpress/plugins": "^6.2.0",
"@wordpress/prettier-config": "^2.2.0",
"ansi-regex": ">=6.0.1",
"@wordpress/env": "^9.2.0",
"@wordpress/scripts": "^27.1.0",
"copy-webpack-plugin": "^11.0.0",
"cypress": "^13.2.0",
"cypress-file-upload": "^5.0.8",
"cypress-localstorage-commands": "^2.2.4",
"cypress-mochawesome-reporter": "^3.6.0",
"husky": "^8.0.1",
"json-schema": ">=0.4.0",
"lint-staged": "^13.0.3",
"markdown-it": "^13.0.1",
"mochawesome-json-to-md": "^0.7.2",
"node-wp-i18n": "^1.2.6"
},
"prettier": "@wordpress/prettier-config",
"dependencies": {
"use-debounce": "^8.0.4"
}
}