-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "webpack-entry-plus",
"version": "1.0.19",
"description": "Generate dynamic webpack bundle output names from known or unknown entry files",
"main": "index.js",
"scripts": {
"push": "npm test && git push && npm publish",
"test": "jest && codecov",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanjsanj/webpack-entry-plus.git"
},
"keywords": [
"webpack",
"plugin",
"entry",
"output",
"dynamic",
"bundle"
],
"author": "Sanjay Purswani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sanjsanj/webpack-entry-plus/issues"
},
"homepage": "https://github.com/sanjsanj/webpack-entry-plus#readme",
"devDependencies": {
"codecov": "^3.1.0",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^29.7.0"
},
"dependencies": {
"glob": "^7.1.2"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}