-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "eventbus-with-namespacing",
"version": "0.0.3",
"description": "Managing events with JavaScript via an event bus with the publish–subscribe pattern",
"main": "build/eventbus.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm-run-all build:*",
"build:01_babel": "babel ./src/EventBus.js -o ./build/eventbus.js",
"build:02_uglify": "uglifyjs ./build/eventbus.js -o ./build//eventbus.min.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DerHannes85/EventBus.git"
},
"keywords": [
"event",
"bus",
"on",
"once",
"off",
"trigger",
"namespace",
"umd",
"publish",
"subscriber"
],
"author": {
"name": "Johannes Weil, UDG Ludwigsburg GmbH",
"email": "[email protected]",
"url": "www.udg.de"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DerHannes85/EventBus/issues"
},
"homepage": "https://github.com/DerHannes85/EventBus#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"uglify-js": "^3.4.8"
}
}