forked from single-spa/single-spa-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.94 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@codecb/single-spa-layout",
"version": "0.0.8",
"description": "Layout engine for single-spa applications",
"type": "module",
"exports": {
"./browser": "./dist/esm/browser.mjs",
"./server": {
"import": "./dist/esm/server.mjs",
"require": "./dist/cjs/server.cjs"
}
},
"typesVersions": {
"*": {
"browser": [
"./dist/esm/browser.d.ts"
],
"server": [
"./dist/esm/server.d.ts"
]
}
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "rm -rf dist && rollup -c rollup.config.ts --configPlugin rollup-plugin-ts",
"dev:build": "yarn build -w",
"check-format": "prettier --check .",
"lint": "eslint src",
"format": "prettier --write src/**/*.ts",
"test": "concurrently -n w: 'yarn:test:*'",
"test:browser": "cross-env BABEL_ENV=test jest --testEnvironment=jsdom --testPathIgnorePatterns=test/node-only --testPathIgnorePatterns=cypress",
"test:node": "cross-env BABEL_ENV=test jest --testEnvironment=node --testPathIgnorePatterns=test/browser-only --testPathIgnorePatterns=cypress",
"test:types": "tsd",
"test:exports": "ls-exports path .",
"test-e2e:firefox": "cypress run --browser firefox",
"test-e2e:chrome": "cypress run --browser chrome",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"tsd": {
"directory": "test"
},
"author": "",
"browserslist": [
"last 4 Safari major versions",
"last 10 Chrome major versions",
"last 10 Firefox major versions",
"last 4 Edge major versions"
],
"devDependencies": {
"@codecb/babel": "0.0.1",
"@codecb/prettierrc": "0.0.1",
"@codecb/rollup-plugin-strip-code": "^0.0.4",
"@codecb/tsconfigs": "^0.0.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.14.1",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.6.2",
"@types/systemjs": "^6.1.1",
"babel-jest": "^28.1.3",
"concurrently": "^7.3.0",
"cross-env": "^7.0.2",
"cypress": "^10.3.1",
"eslint": "^8.20.0",
"eslint-config-important-stuff": "^1.1.0",
"eslint-config-node-important-stuff": "^2.0.0",
"eslint-plugin-es5": "^1.5.0",
"jest": "^28.1.3",
"jest-cli": "^28.1.3",
"jest-serializer-html": "^7.0.0",
"js-correct-lockfile": "^1.0.0",
"jsdom": "^20.0.0",
"ls-exports": "^1.0.2",
"parse5": "^7.0.0",
"parse5-htmlparser2-tree-adapter": "^7.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"single-spa": "^6.0.0-beta.3",
"tsd": "^0.22.0",
"typescript": "4.7.4"
},
"peerDependencies": {
"parse5": "^7.0.0",
"parse5-htmlparser2-tree-adapter": "^7.0.0",
"single-spa": "^6.0.0-beta.3"
},
"prettier": "@codecb/prettierrc"
}