-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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
{
"name": "webpack-import-map-plugin",
"version": "1.0.0-alpha0",
"description": "A webpack plugin to help generate import maps for outputted entry files, based on webpack-manifest-plugin",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"test": "jest",
"lint": "eslint . --fix",
"preversion": "npm run test"
},
"engines": {
"node": ">=10.13.0"
},
"dependencies": {
"fs-extra": "^9.1.0",
"lodash": "^4.17.21",
"object.entries": "^1.1.3",
"tapable": "^2.2.0"
},
"peerDependencies": {
"webpack": "2 || 3 || 4"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zleight1/webpack-import-map-plugin.git"
},
"keywords": [
"webpack",
"import-map",
"import-map-deployer",
"webpack-import-map-plugin",
"importmap",
"import-maps",
"importmaps",
"plugin",
"single-spa",
"singlespa"
],
"author": "Zachary Charles Leighton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zleight1/webpack-import-map-plugin/issues"
},
"homepage": "https://github.com/zleight1/webpack-import-map-plugin#readme",
"devDependencies": {
"eslint": "7.24.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "6.2.0",
"jest": "26.6.3",
"jest-junit": "12.0.0",
"memory-fs": "0.5.0",
"pre-commit": "1.2.2",
"webpack": "4.46.0"
}
}