-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.54 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
38
39
40
41
42
43
44
{
"requires": true,
"lockfileVersion": 1,
"name": "wpt-custom-mo-file",
"version": "1.1.0",
"description": "WPT Custom Mo File is a powerful translation plugin that helps you use your own translation .mo files. Simple as that.",
"author": "WP-Translations",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"i18n",
"l10n",
"GlotPress",
"variants"
],
"homepage": "https://github.com/WP-Translations/wpt-custom-mo-file#readme",
"repository": {
"type": "git",
"url": "https://github.com/WP-Translations/wpt-custom-mo-file"
},
"bugs": {
"url": "https://github.com/WP-Translations/wpt-custom-mo-file/issues"
},
"devDependencies": {
"@wordpress/scripts": "^24.4.0",
"datatables.net-dt": "^1.12.1",
"postcss-cli": "^10.0.0",
"tablesorter": "^2.31.3",
"uglify-js": "^3.17.4"
},
"scripts": {
"build": "npm run build:js && npm run compile:css && npm run build:css",
"build:js": "npm run build:js:admin",
"build:js:admin": "uglifyjs assets/js/admin.js --compress drop_console=true -o assets/js/admin.min.js",
"compile:css": "sass --no-source-map assets/css:assets/css && stylelint assets/css/*.css --fix",
"build:css": "npm run build:css:admin && npm run build:css:datatable",
"build:css:admin": "postcss assets/css/admin.css > assets/css/admin.min.css",
"build:css:datatable": "postcss assets/css/data-table.css > assets/css/data-table.min.css",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json"
}
}