-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
82 lines (82 loc) · 2.16 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
{
"name": "@trutoo/event-bus",
"version": "1.0.0",
"description": "Typesafe cross-platform pubsub event bus ensuring reliable communication between fragments and micro frontends.",
"type": "module",
"keywords": [
"event bus",
"communication",
"micro frontends",
"fragments"
],
"author": {
"name": "Trutoo AB",
"url": "https://www.trutoo.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/trutoo/event-bus.git"
},
"bugs": "https://github.com/trutoo/event-bus/issues",
"contributors": [
{
"name": "Erik Hughes",
"email": "erik.hughes@outlook.com",
"url": "https://github.com/swiftwork"
}
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.min.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"husky": {
"hooks": {
"pre-push": "yarn test",
"commit-msg": "node tools/commit-msg.js"
}
},
"scripts": {
"prebuild": "rimraf dist/*",
"build": "rollup -c",
"test": "jest",
"postversion": "yarn build",
"release": "semantic-release"
},
"dependencies": {
"jsonschema": "1.4.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/github": "10.0.5",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"conventional-changelog-angular": "8.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "12.1.0",
"eslint-plugin-unused-imports": "3.2.0",
"husky": "9.0.11",
"jest": "29.7.0",
"prettier": "3.3.0",
"rimraf": "5.0.7",
"rollup": "4.18.0",
"rollup-plugin-node-polyfills": "0.2.1",
"semantic-release": "24.0.0",
"ts-jest": "29.1.4",
"typescript": "5.4.5"
},
"optionalDependencies": {
"@types/jest": "29.5.12"
},
"packageManager": "yarn@4.2.2"
}