forked from TakenPilot/client-side-event-bus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "client-side-event-bus",
"version": "0.4.3",
"description": "A tiny and fast event bus with AMQP and Postal.js-like functionality",
"main": "src/index.js",
"repository": "https://github.com/TakenPilot/client-side-event-bus.git",
"scripts": {
"build": "uglifyjs --compress --mangle --output index.min.js -- src/index.js",
"lint": "tsc -p tsconfig.json && eslint .",
"test": "npm run lint && npm run karma-once",
"karma": "karma start",
"karma-once": "karma start --single-run",
"prepublish": "npm run lint && npm test -- --single-run && npm run build"
},
"keywords": [
"postal",
"amqp",
"event bus",
"event broker",
"broker",
"events"
],
"author": "Dane Stuckel",
"license": "LICENSE IN LICENSE",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.0",
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-import": "^2.18.2",
"karma": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"mocha": "^6.2.1",
"puppeteer": "^1.20.0",
"sinon": "^7.5.0",
"typescript": "^3.6.4",
"uglify-js": "^3.6.1"
},
"files": [
"src/index.d.ts",
"src/index.js"
],
"types": "src/index.d.ts",
"dependencies": {},
"browserslist": [
"last 4 years"
]
}