-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.19 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
36
37
{
"requires": true,
"lockfileVersion": 1,
"name": "translation-tools",
"version": "1.6.0",
"description": "Translation tools for your WordPress install.",
"author": "Pedro Mendonça",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"i18n",
"l10n"
],
"homepage": "https://github.com/pedro-mendonca/Translation-Tools#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pedro-mendonca/Translation-Tools.git"
},
"bugs": {
"url": "https://github.com/pedro-mendonca/Translation-Tools/issues"
},
"devDependencies": {
"@wordpress/scripts": "^30.1.0",
"node-sass": "^9.0.0",
"sass-lint": "^1.13.1",
"scss": "^0.2.4",
"uglify-js": "^3.19.2"
},
"scripts": {
"compile:js": "npm run compile:js:language-settings.js && npm run compile:js:update-core.js",
"compile:js:language-settings.js": "uglifyjs assets/js/language-settings.js --compress drop_console=true -o assets/js/language-settings.min.js",
"compile:js:update-core.js": "uglifyjs assets/js/update-core.js --compress drop_console=true -o assets/js/update-core.min.js",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json"
}
}