-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 KB
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
{
"name": "contact-form-to-api",
"version": "2.4.0",
"description": "Extend Contact Form 7 functionality by connecting forms to external APIs",
"main": "contact-form-to-api.php",
"scripts": {
"grunt": "grunt",
"minify": "npm run minify:css && npm run minify:js",
"minify:css": "postcss assets/css/*.css --base assets/css --dir assets/css --ext .min.css",
"minify:js": "grunt uglify",
"build": "npm run clean && npm run minify",
"clean": "rm -f assets/css/*.min.css assets/js/*.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/SilverAssist/contact-form-to-api.git"
},
"keywords": [
"wordpress",
"plugin",
"contact-form-7",
"api",
"integration"
],
"author": "Silver Assist",
"license": "PolyForm-Noncommercial-1.0.0",
"bugs": {
"url": "https://github.com/SilverAssist/contact-form-to-api/issues"
},
"homepage": "https://github.com/SilverAssist/contact-form-to-api#readme",
"devDependencies": {
"cssnano": "^7.1.3",
"grunt": "^1.6.1",
"grunt-contrib-uglify": "^5.2.2",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}