forked from trutoo/event-bus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.98 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
{
"name": "@trutoo/event-bus",
"version": "1.0.0",
"description": "Typesafe cross-platform pubsub event bus ensuring reliable communication between fragments and micro frontends.",
"keywords": [
"event bus",
"communication",
"micro frontends",
"fragments"
],
"author": {
"name": "Trutoo AB",
"url": "https://www.trutoo.com/"
},
"license": "MIT",
"repository": "https://github.com/trutoo/event-bus.git",
"bugs": "https://github.com/trutoo/event-bus/issues",
"contributors": [
{
"name": "Erik Hughes",
"email": "[email protected]",
"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": "npm run test",
"commit-msg": "node tools/commit-msg.js"
}
},
"scripts": {
"prebuild": "rimraf dist/*",
"build": "rollup -c",
"test": "jest",
"postversion": "npm run build",
"release": "semantic-release"
},
"dependencies": {
"jsonschema": "1.4.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "21.0.2",
"@rollup/plugin-node-resolve": "13.1.3",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/github": "8.0.2",
"@typescript-eslint/eslint-plugin": "5.15.0",
"@typescript-eslint/parser": "5.15.0",
"conventional-changelog-angular": "5.0.13",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"prettier": "2.6.0",
"rimraf": "3.0.2",
"rollup": "2.70.1",
"rollup-plugin-node-polyfills": "0.2.1",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.31.2",
"semantic-release": "19.0.2",
"ts-jest": "27.1.3",
"typescript": "4.6.2"
},
"optionalDependencies": {
"@types/jest": "27.4.1"
}
}