-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 888 Bytes
/
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
{
"name": "@arguiot/broadcast.js",
"version": "1.0.4",
"description": "A simple notification dispatch mechanism that enables the broadcast of information to registered observers within your code.",
"main": "dist/broadcast.js",
"scripts": {
"test": "eye",
"dev": "parcel broadcast.ts --global BroadcastJS",
"build": "tsc && parcel build broadcast.ts --global BroadcastJS"
},
"typings": "broadcast.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/arguiot/BroadcastJS.git"
},
"keywords": [
"broadcast,notification,global"
],
"author": "Arthur Guiot",
"license": "MIT",
"bugs": {
"url": "https://github.com/arguiot/BroadcastJS/issues"
},
"homepage": "https://github.com/arguiot/BroadcastJS#readme",
"devDependencies": {
"eye.js": "^1.1.2",
"parcel-bundler": "^1.12.4",
"typescript": "^4.1.3"
}
}