forked from 10up/wp-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·40 lines (40 loc) · 1009 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
{
"name": "tenup-wp-scaffold",
"version": "1.0.0",
"description": "Project Description",
"homepage": "https://project-domain.tld",
"repository": {
"type": "git",
"url": "https://project-git-repo.tld"
},
"workspaces": [
"themes/*",
"mu-plugins/10up-plugin"
],
"scripts": {
"prepare": "husky install",
"build": "npm run build --workspaces --if-present",
"start": "npm run watch",
"watch:theme": "npm run watch -w=tenup-theme",
"watch:plugin": "npm run watch -w=tenup-plugin",
"watch": "run-p watch:theme watch:plugin",
"test": "npm run test --workspaces --if-present",
"clean-dist": "npm run clean-dist --if-present"
},
"author": {
"name": "10up",
"email": "[email protected]",
"url": "https://10up.com",
"role": "developer"
},
"engineStrict": true,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"npm-run-all": "^4.1.5"
}
}