-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.06 KB
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
66
67
68
69
70
71
72
73
74
75
{
"name": "single-spa-css",
"version": "4.0.1",
"description": "Lifecycle helpers for loading CSS",
"type": "module",
"exports": {
".": {
"import": "./lib/esm/single-spa-css.min.js",
"require": "./lib/umd/single-spa-css",
"types": "./lib/esm/single-spa-css.d.ts"
},
"./ExposeRuntimeCssAssetsPlugin": "./ExposeRuntimeCssAssetsPlugin.js"
},
"scripts": {
"test": "jest",
"clean": "rimraf lib",
"build": "pnpm run clean && rollup -c",
"prepublishOnly": "pnpm run build",
"check-format": "prettier --check .",
"watch:build": "rollup -cw",
"format": "prettier --write .",
"lint": "eslint src",
"prepare": "husky"
},
"files": [
"lib",
"ExposeRuntimeCssAssetsPlugin.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/single-spa/single-spa-css.git"
},
"author": "Jolyn Denning",
"license": "MIT",
"bugs": {
"url": "https://github.com/single-spa/single-spa-css/issues"
},
"homepage": "https://github.com/single-spa/single-spa-css#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.26.0",
"@rollup/plugin-typescript": "^12.1.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/jest": "^29.5.14",
"babel-eslint": "11.0.0-beta.2",
"babel-jest": "^29.7.0",
"concurrently": "^9.1.2",
"eslint": "^9.19.0",
"eslint-config-ts-important-stuff": "^1.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"rollup": "^4.32.0",
"rollup-plugin-terser": "^7.0.2",
"single-spa": "^6.0.3",
"tslib": "^2.1.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@types/webpack-env": "^1.16.0"
},
"peerDependencies": {
"mini-css-extract-plugin": "*",
"webpack": "*"
},
"packageManager": "pnpm@10.10.0"
}