-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1019 Bytes
/
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
{
"name": "Root",
"version": "1.0.0",
"description": "",
"dependencies": {},
"devDependencies": {
"parcel": "^2.0.0-rc.0",
"prettier": "^2.5.1",
"husky": "^7.0.0"
},
"scripts": {
"dev": "parcel watch --no-hmr",
"build": "parcel build --no-cache",
"format": "prettier --write ./assets/**/* --no-error-on-unmatched-pattern",
"prepare": "husky install"
},
"targets": {
"public": {
"source": [
"./assets/public/js/prefix-public.js"
],
"sourceMap": false,
"distDir": "./assets/public/js/build/"
},
"admin": {
"source": [
"./assets/admin/js/prefix-admin.js"
],
"sourceMap": false,
"distDir": "./assets/admin/js/build/"
}
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"outputFormat": "global",
"repository": {
"type": "git",
"url": ""
},
"author": "plugin_author_name",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "plugin_author_url"
},
"homepage": ""
}