-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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
{
"name": "@podium/browser",
"version": "1.3.0",
"type": "module",
"main": "./dist/src/index.js",
"types": "./types/index.d.ts",
"exports": {
"types": "./types/index.d.ts",
"require": "./dist/src/index.js",
"import": "./src/index.js"
},
"license": "MIT",
"keywords": [
"micro services",
"micro frontend",
"components",
"podium",
"http"
],
"repository": {
"type": "git",
"url": "[email protected]:podium-lib/browser.git"
},
"bugs": {
"url": "https://github.com/podium-lib/issues"
},
"homepage": "https://podium-lib.io/",
"files": [
"dist",
"src",
"types"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup -c",
"lint": "eslint . --ignore-pattern '/dist/'",
"lint:fix": "eslint --fix . --ignore-pattern '/dist/'",
"test": "tap --disable-coverage --allow-empty-coverage test/*.js",
"types": "run-s types:tsc types:test",
"types:tsc": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"dependencies": {
"@podium/bridge": "^1.2.2",
"eventemitter3": "4.0.7"
},
"devDependencies": {
"@babel/preset-env": "7.26.9",
"@podium/eslint-config": "1.0.10",
"@podium/semantic-release-config": "2.0.0",
"@podium/typescript-config": "1.0.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.3.1",
"eslint": "9.23.0",
"jsdom": "24.1.3",
"npm-run-all2": "6.2.6",
"prettier": "3.5.3",
"rollup": "4.38.0",
"semantic-release": "24.2.3",
"tap": "18.7.2"
}
}