-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "standalone-single-spa-webpack-plugin",
"version": "5.0.0",
"description": "A webpack plugin to run single-spa microfrontends as standalone",
"main": "lib/standalone-single-spa.js",
"scripts": {
"test": "jest",
"build:types": "tsc",
"prepublishOnly": "pnpm run build:types",
"prepare": "husky install",
"format": "prettier --write .",
"lint": "eslint lib"
},
"types": "types/standalone-single-spa.d.ts",
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"eslint": "^8.27.0",
"eslint-config-node-important-stuff": "^2.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-serializer-html": "^7.1.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.8.4",
"webpack": "5.75.0"
},
"peerDependencies": {
"html-webpack-plugin": "*",
"webpack": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/single-spa/standalone-single-spa-webpack-plugin.git"
},
"keywords": [
"webpack",
"single-spa",
"standalone"
],
"author": "Joel Denning",
"license": "MIT",
"bugs": {
"url": "https://github.com/single-spa/standalone-single-spa-webpack-plugin/issues"
},
"homepage": "https://github.com/single-spa/standalone-single-spa-webpack-plugin#readme",
"engines": {
"node": ">= 8.3.0"
}
}