-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 825 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 825 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
35
36
{
"name": "wp-plugin",
"version": "1.0.0",
"description": "My WordPress plugin boilerplate.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/i30/wp-plugin.git"
},
"keywords": [
"plugin",
"wordpress",
"boilerplate"
],
"author": "i30",
"license": "MIT",
"bugs": {
"url": "https://github.com/i30/wp-plugin/issues"
},
"homepage": "https://github.com/i30/wp-plugin#readme",
"devDependencies": {
"css-loader": "^6.10.0",
"mini-css-extract-plugin": "^2.8.1",
"sass": "^1.27.0",
"sass-loader": "^14.1.1",
"webpack": "^5.90.3"
},
"dependencies": {
"file-loader": "^6.2.0",
"mini-svg-data-uri": "^1.4.4",
"url-loader": "^4.1.1"
}
}