-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "contact-form-7-extras",
"description": "Simple controls for some of the advanced Contact Form 7 plugin functionality",
"private": true,
"homepage": "https://formcontrols.com",
"author": {
"name": "Kaspars Dambis",
"url": "https://kaspars.net"
},
"scripts": {
"lint": "npm-run-all lint:*",
"lint:js": "eslint *.js assets",
"lint:php": "composer lint",
"format": "npm-run-all format:*",
"format:js": "eslint --fix *.js assets",
"format:php": "composer format",
"test": "npm-run-all test:*",
"test:php": "wp-env run tests-cli --env-cwd=wp-content/plugins/contact-form-7-extras composer test",
"build": "grunt build",
"deploy": "grunt deploy",
"deploy-trunk": "grunt deploy:trunk",
"wp-env": "wp-env",
"blueprint": "grunt blueprint-url"
},
"repository": {
"type": "git",
"url": "https://github.com/kasparsd/contact-form-7-extras.git"
},
"bugs": {
"url": "https://github.com/kasparsd/contact-form-7-extras/issues"
},
"keywords": [
"wordpress",
"wordpress plugin"
],
"license": "GPL-2.0-or-later",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-wordpress": "^2.0.0",
"@wordpress/env": "^10.3.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0",
"grunt-contrib-copy": "^1.0",
"grunt-text-replace": "^0.4.0",
"grunt-wp-deploy": "^2.1.2",
"load-grunt-tasks": "^5.1",
"npm-run-all": "^4.1.5",
"parse-gitignore": "^0.5"
}
}