-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
30 lines (30 loc) · 971 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
{
"name": "translate-w-org-env",
"version": "0.1.0",
"description": "Local development environment for translate.wordpress.org",
"author": "Jesús Amieiro",
"license": "GPL-2.0-or-later",
"private": true,
"dependencies": {},
"devDependencies": {
"@wordpress/env": "^9.10.0"
},
"scripts": {
"verify": "scripts/verify_prerequisites.sh",
"pull_repos": "scripts/pull_repos.sh",
"provision": "./provision.sh",
"start": "npm run verify && npm run pull_repos && npm run wp-env start && npm run provision",
"stop": "npm run wp-env stop",
"destroy": "npm run wp-env destroy",
"destroy-and-provision": "yes | npm run destroy && npm run start",
"wp-env": "wp-env"
},
"repository": {
"type": "git",
"url": "https://github.com/WordPress/translate-w-org-env"
},
"bugs": {
"url": "https://github.com/WordPress/translate-w-org-env"
},
"homepage": "https://github.com/WordPress/translate-w-org-env#readme"
}