-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.52 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
{
"name": "ubus",
"version": "1.0.13",
"description": "Micro message bus for the browser.",
"main": "dist/umd/bus.min.js",
"scripts": {
"compile": "tsc",
"build": "npm run compile && gulp build",
"test": "npm run compile && gulp unit_test",
"bench": "node bench/bus_benchmark.js",
"prepublish": "npm t"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericmdantas/uBus.git"
},
"keywords": [
"message",
"bus",
"event-emitter",
"event",
"javascript",
"browser",
"micro",
"small",
"client",
"es2015",
"commonjs",
"simple",
"light"
],
"author": "Eric Mendes Dantas",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericmdantas/uBus/issues"
},
"homepage": "https://github.com/ericmdantas/uBus#readme",
"devDependencies": {
"@types/benchmark": "^1.0.29",
"@types/jasmine": "^3.5.0",
"@types/jasminewd2": "^2.0.3",
"babelify": "^7.3.0",
"benchmark": "^2.1.1",
"browserify": "^13.1.0",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.1",
"gulp-babel-minify": "^0.1.12",
"gulp-browserify": "^0.5.1",
"gulp-rename": "^1.2.2",
"gulp-typescript": "^4.0.1",
"gulp-uglify": "^2.0.0",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"typescript": "^3.7"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0"
}
}