-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1008 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1008 Bytes
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
{
"name": "webpack-assets",
"version": "1.0.0",
"description": "webpack asset handling example.",
"author": "Sandhills Development, LLC",
"license": "GPL-3.0-or-later",
"keywords": [
"webpack"
],
"homepage": "https://github.com/sandhillsdevelopment/webpack-assets#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sandhillsdevelopment/webpack-assets.git"
},
"bugs": {
"url": "https://github.com/sandhillsdevelopment/webpack-assets/issues"
},
"devDependencies": {
"@wordpress/scripts": "^16.0.0",
"ignore-emit-webpack-plugin": "^2.0.6"
},
"scripts": {
"build": "wp-scripts build --webpack-no-externals && npm run i18n",
"format": "wp-scripts format",
"i18n": "wp i18n make-pot . languages/webpack-assets.pot --domain=webpack-assets",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"start": "wp-scripts start --webpack-no-externals"
}
}