-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "@single-spa/import-map-injector",
"version": "2.0.1",
"description": "Browser library adding small features to native import maps",
"main": "lib/import-map-injector.js",
"type": "module",
"exports": {
".": {
"types": "./types/import-map-injector.d.ts",
"default": "./lib/import-map-injector.js"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"types"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint src --ext ts",
"format": "prettier --write .",
"check-format": "prettier --check .",
"watch": "rollup -cw",
"test": "echo \"No tests\"",
"test-serve": "http-server --mimetypes '{ \"application/importmap+json\": [\"importmap\"] }'",
"build": "concurrently pnpm:build:*",
"prepublishOnly": "pnpm run build",
"build:types": "tsc",
"build:lib": "rollup -c"
},
"keywords": [],
"author": "Joel Denning",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.4.3",
"concurrently": "^8.2.0",
"eslint": "^8.47.0",
"eslint-config-ts-important-stuff": "^1.1.0",
"express": "^4.18.2",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"prettier": "^3.0.2",
"pretty-quick": "^4.0.0",
"rollup": "^3.28.0",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]"
}