-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.46 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
{
"name": "insecure-content-warning",
"version": "1.2.1",
"description": "Prevent editors from adding insecure content in the editor.",
"homepage": "https://github.com/10up/insecure-content-warning",
"license": "GPL-2.0-or-later",
"author": {
"name": "10up",
"email": "[email protected]",
"url": "https://10up.com",
"role": "developer"
},
"scripts": {
"start": "wp-scripts start",
"build": "wp-scripts build",
"build-release": "npm install && composer install --no-dev -o && npm run build",
"lint-release": "npm install && composer install && npm run lint",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js ./src",
"lint-php": "composer run lint",
"format": "wp-scripts format",
"lint": "npm run lint:css && npm run lint-js && npm run lint-php",
"cypress:open": "cypress open --browser chrome --config-file tests/cypress/cypress.config.js",
"cypress:run": "cypress run --browser chrome --config-file tests/cypress/cypress.config.js",
"env": "wp-env",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"postenv:start": "./tests/bin/initialize.sh"
},
"dependencies": {
"@wordpress/element": "^5.0.0",
"underscore": "^1.12.1"
},
"devDependencies": {
"@10up/cypress-wp-utils": "^0.4.0",
"@wordpress/env": "^10.5.0",
"@wordpress/scripts": "^27.1.0",
"cypress": "^13.13.3",
"husky": "^3.1.0"
},
"engines": {
"node": ">=20.0.0"
}
}