-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.47 KB
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
45
46
47
48
{
"name": "wordpress-enqueue-chunks-webpack-plugin",
"version": "1.0.6",
"description": "A webpack plugin that manages registering and enqueing split chunks in a wordpress environment",
"main": "index.js",
"scripts": {
"build": "tsc",
"build:watch": "npm run build -- -w",
"lint": "tslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run preflight && npm run build",
"preversion": "npm run preflight && npm run build",
"postversion": "git push && git push --tags",
"test:php": "composer test",
"test:js": "export NODE_ENV=test && jest --verbose",
"test:watch": "npm run test:js -- --watch",
"test": "npm run test:php && npm run test:js",
"preflight": "npm run lint && npm run test",
"release": "branch-release -s build -d lib"
},
"keywords": [
"webpack",
"webpack-plugin",
"splitchunks",
"wordpress"
],
"author": "Josh Arens <josh@pro.photo> (https://github.com/j-arens)",
"license": "MIT",
"repository": {
"url": "https://github.com/j-arens/wordpress-enqueue-chunks-webpack-plugin",
"type": "git"
},
"bugs": {
"url": "https://github.com/j-arens/wordpress-enqueue-chunks-webpack-plugin/issues"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"devDependencies": {
"@types/jest": "26.0.21",
"@types/node": "14.14.35",
"branch-release": "1.0.4",
"jest": "26.6.3",
"tslint": "6.1.3",
"typescript": "4.2.3",
"webpack": "5.26.3"
}
}