-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "@condenast/quick-bus",
"version": "0.2.0",
"description": "A tiny and fast event bus with AMQP and Postal.js-like functionality",
"main": "index.min.js",
"files": [
"index.min.js"
],
"browserslist": [
"last 2 years"
],
"scripts": {
"build": "uglifyjs --compress --mangle --output index.min.js -- index.js",
"lint": "eslint --report-unused-disable-directives .",
"test": "npm run karma-once",
"posttest": "eslint --report-unused-disable-directives .",
"karma": "karma start",
"karma-once": "karma start --single-run",
"prepublish": "npm test -- --single-run && npm run build"
},
"keywords": [
"postal",
"amqp",
"event bus",
"event broker",
"broker",
"events"
],
"author": "Dane Stuckel",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"chai": "4.3.7",
"eslint": "8.35.0",
"eslint-plugin-compat": "4.1.2",
"eslint-plugin-import": "2.27.5",
"karma": "6.4.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.1",
"karma-mocha": "2.0.1",
"karma-sinon": "1.0.5",
"mocha": "10.2.0",
"sinon": "15.0.1",
"uglify-js": "3.17.4"
}
}