-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
32 lines (32 loc) · 916 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
31
32
{
"name": "js-event-bus",
"version": "2.0.0",
"description": "Event bus for your Javascript applications",
"homepage": "https://github.com/bcerati/js-event-bus#readme",
"main": "src/index.js",
"author": "Boris Cerati <[email protected]> (https://boris-cerati.fr)",
"license": "MIT",
"keywords": [
"event",
"bus",
"node",
"nodejs"
],
"repository": {
"type": "git",
"url": "https://github.com/bcerati/js-event-bus.git"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"es-check": "^7.0.0",
"prettier": "^2.7.1",
"release-it": "^15.3.0",
"uglify-js": "^3.16.3"
},
"scripts": {
"build": "babel src -d lib --extensions \".ts\" && node ./node_modules/uglify-js/bin/uglifyjs ./lib/index.js -c -o ./lib/js-event-bus.min.js"
}
}