-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "@single-spa/import-map-microfrontend-utils",
"version": "2.0.0",
"description": "Utility types and functions for import-map-microfrontend projects",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"default": "./lib/import-map-microfrontend-utils.js",
"types": "./lib/import-map-microfrontend-utils.d.ts"
}
},
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"check-format": "prettier --check .",
"format": "prettier --write .",
"test": "jest",
"prepublishOnly": "pnpm clean && pnpm build",
"prepare": "husky"
},
"keywords": [
"single-spa"
],
"files": [
"lib"
],
"author": "Joel Denning",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}