-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "@takenpilot/client-side-event-bus",
"publishConfig": {
"access": "public"
},
"version": "1.0.0",
"description": "A lightweight event bus for client-side JavaScript, inspired by AMQP and Postal.js. Easily manage communication between components with a simple and efficient pub/sub architecture.",
"documentation": "https://github.com/TakenPilot/client-side-event-bus#readme",
"main": "index.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/TakenPilot/client-side-event-bus.git"
},
"scripts": {
"build": "uglifyjs --compress --mangle --output index.min.js -- src/index.js",
"lint": "eslint -c ./src/.eslintrc.json ./src/",
"test": "npm run lint && npm run web-test-runner",
"web-test-runner": "npx web-test-runner --playwright --browsers chromium firefox webkit --config=./web-test-runner.config.mjs",
"prepublish": "npm run lint && npm test -- --single-run && npm run build"
},
"keywords": [
"postal.js",
"amqp",
"event bus",
"message broker",
"event architecture",
"broker",
"events",
"pubsub",
"clientside"
],
"author": "Dane Stuckel",
"license": "LICENSE IN LICENSE",
"devDependencies": {
"@web/test-runner": "^0.18.1",
"@web/test-runner-playwright": "^0.11.0",
"eslint": "^8.57.0",
"eslint-plugin-compat": "4.2.0",
"eslint-plugin-import": "^2.29.1",
"uglify-js": "^3.17.4"
},
"files": [
"src/index.d.ts",
"index.min.js"
],
"types": "src/index.d.ts",
"browserslist": [
"last 8 years"
],
"engines": {
"node": ">=10.0.0"
}
}