-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 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
{
"name": "@eik/webpack-plugin",
"version": "2.0.7",
"description": "WebPack plugin for loading import maps from an Eik server and applying the mapping to ECMAScript modules in preparation for upload to the same server.",
"type": "module",
"main": "./src/loader.js",
"types": "./types/loader.d.ts",
"files": [
"src",
"types"
],
"scripts": {
"clean": "rimraf .tap node_modules types",
"test": "tap --disable-coverage --allow-empty-coverage",
"test:snapshot": "TAP_SNAPSHOT=1 tap --allow-empty-coverage",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git@github.com:eik-lib/webpack-plugin.git"
},
"keywords": [
"webpack-plugin",
"webpack.js",
"webpack",
"import",
"url",
"esm"
],
"author": "Finn.no",
"license": "MIT",
"bugs": {
"url": "https://github.com/eik-lib/webpack-plugin/issues"
},
"homepage": "https://github.com/eik-lib/webpack-plugin#readme",
"devDependencies": {
"@eik/eslint-config": "1.0.7",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.0",
"@eik/typescript-config": "1.0.0",
"eslint": "9.17.0",
"fastify": "4.28.1",
"memfs": "4.14.0",
"npm-run-all2": "5.0.2",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"tap": "21.0.1",
"typescript": "5.5.4",
"webpack": "5.93.0",
"webpack-cli": "5.1.4"
},
"dependencies": {
"@eik/common": "3.0.1",
"undici": "6.21.1"
}
}