-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 956 Bytes
/
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
{
"name": "@waltz-controls/eventbus",
"version": "1.2.4",
"description": "Simple EventBus implementation for JS SPA",
"main": "dist/index.js",
"source": "src/eventbus.js",
"module": "dist/index.esm.js",
"watch": {
"build": "{src,test}/*.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "rollup -c",
"watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waltz-controls/eventbus.git"
},
"keywords": [
"pubsub",
"publisher",
"subscriber",
"eventbus",
"bus",
"event"
],
"author": "Ingvord",
"license": "MIT",
"bugs": {
"url": "https://github.com/waltz-controls/eventbus/issues"
},
"homepage": "https://github.com/waltz-controls/eventbus#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"rollup": "^2.3.4"
},
"dependencies": {
"rxjs": "^6.5.5"
}
}