-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 KB
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
{
"name": "app-bus",
"version": "2.3.1",
"description": "An asynchronous application event bus for javascript designed to work with the pub/sub paradigm.",
"main": "./dist/cjs/index.js",
"scripts": {
"build:cjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"test": "npm run build && mocha test/**/*.js",
"release": "node scripts/publish.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoshuaRamirez/AppBus.git"
},
"keywords": [
"Events",
"Pub",
"Sub",
"Publish",
"Subscribe",
"Publications",
"Subscriptions",
"Bus"
],
"author": "Joshua Ramirez <joshuaramirez2048@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/JoshuaRamirez/AppBus/issues"
},
"homepage": "https://github.com/JoshuaRamirez/AppBus#readme",
"devDependencies": {
"chai": "^5.2.0",
"mocha": "^10.2.0",
"typescript": "^5.4.5",
"@types/node": "^22.0.0",
"@types/mocha": "^10.0.1",
"@types/chai": "^5.2.2"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"DEV",
"PROD",
"TEST"
]
},
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
}