-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 845 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 845 Bytes
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
{
"name": "jotform-wordpress-store-plugin",
"version": "2.1.3",
"description": "Create an online store and embed it in your site.",
"author": "Jotform",
"license": "GPLv2 or later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start",
"prepare": "husky install",
"precommit": "lint-staged --quiet"
},
"devDependencies": {
"@wordpress/scripts": "^30.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0"
},
"dependencies": {
"@wordpress/components": "^28.10.0",
"@wordpress/icons": "^10.10.0"
},
"lint-staged": {
"*.js": [
"npm run format",
"npm run lint:js"
]
}
}