-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "bdsl-webpack-plugin",
"version": "1.5.0-beta",
"description": "Browserslist Differential Script Loading webpack plugin.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/bdsl-webpack-plugin"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/bdsl-webpack-plugin/issues"
},
"main": "lib/index.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "trigen-scripts lint",
"jest": "trigen-scripts jest",
"checkSize": "trigen-scripts checkSize",
"test": "trigen-scripts test",
"start": "trigen-scripts start",
"start:ssrExample": "NODE_ENV=test babel-node -r ./test/mockContext examples/SsrBdslWebpackPlugin/server",
"measure": "NODE_ENV=test babel-node test/measure",
"build:testBundle": "NODE_ENV=test babel-node test/buildTestBundle",
"build": "trigen-scripts build",
"cleanPublish": "trigen-scripts cleanPublish",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"browserslist",
"differential-script-loading",
"differential-stylesheet-loading",
"browserslist-useragent-regexp",
"useragent",
"webpack",
"webpack-plugin",
"html-webpack-plugin"
],
"peerDependencies": {
"html-webpack-plugin": "^3.0.0 || ^4.0.0",
"webpack": "^4.0.0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.9.6",
"browserslist": "^4.8.7",
"browserslist-useragent-regexp": "^2.0.1"
},
"devDependencies": {
"@babel/preset-modules": "^0.1.3",
"@size-limit/preset-small-lib": "^4.5.0",
"@trigen/scripts": "^6.0.0",
"@trigen/scripts-plugin-babel": "^6.1.1",
"@trigen/scripts-plugin-eslint": "^6.0.0",
"@trigen/scripts-plugin-jest": "^6.1.1",
"@trigen/scripts-plugin-rollup": "^6.0.0",
"@trigen/scripts-plugin-size-limit": "^6.0.0",
"@trigen/scripts-preset-lib": "^6.0.0",
"babel-loader": "^8.0.6",
"canvg": "^3.0.5",
"css-loader": "^3.5.3",
"eslint-plugin-jest": "^23.7.0",
"express": "^4.17.1",
"html-webpack-plugin": "^4.0.1",
"memory-fs": "^0.5.0",
"mini-css-extract-plugin": "^0.9.0",
"module-alias": "^2.2.2",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"pretty-bytes": "^5.3.0",
"pretty-ms": "^7.0.0",
"puppeteer": "^3.0.0",
"rollup-plugin-eslint": "^7.0.0",
"script-ext-html-webpack-plugin": "^2.1.4",
"size-limit": "^4.5.0",
"webpack": "^4.41.6",
"when-dom-ready": "^1.2.12"
},
"files": [
"lib"
]
}