forked from GlotPress/GlotPress
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.29 KB
/
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
{
"name": "glotpress",
"version": "0.0.0",
"private": true,
"description": "GlotPress is a collaborative, web-based software translation tool.",
"author": "The GlotPress Contributors",
"license": "GPL-2.0-or-later",
"homepage": "https://glotpress.blog/",
"repository": "git+https://github.com/GlotPress/GlotPress.git",
"bugs": {
"url": "https://github.com/GlotPress/GlotPress/issues"
},
"devDependencies": {
"@wordpress/env": "^9.6.0",
"@wordpress/scripts": "^27.5.0",
"grunt": "^1.6.1",
"grunt-browserify": "^6.0.0",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-text-replace": "^0.4.0",
"load-grunt-tasks": "^5.1.0"
},
"scripts": {
"build": "grunt",
"watch": "grunt watch",
"prepare-release": "grunt replace:prepare-release",
"env:start": "wp-env start && wp-env run cli wp option update permalink_structure '/%postname%/'",
"env:stop": "wp-env stop",
"env:phpunit": "wp-env run tests-cli --env-cwd=wp-content/plugins/GlotPress composer install && wp-env run tests-cli --env-cwd=wp-content/plugins/GlotPress php ./vendor/bin/phpunit",
"lint:js": "wp-scripts lint-js",
"lint:js-fix": "wp-scripts lint-js --fix"
}
}