-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 898 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 898 Bytes
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
{
"name": "telegraph-events",
"description": "Minimal event emitter forked from smokesignals.js",
"version": "1.0.3",
"author": "Dustin Brown <dubrowgn.com> (https://dubrowgn.com)",
"bugs": {
"url": "https://github.com/dubrowgn/telegraph/issues",
"email": "dubrowgn@gmail.com"
},
"keywords": [
"events",
"emitter",
"trigger"
],
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/dubrowgn/telegraph.git"
},
"scripts": {
"banner": "bash -c 'echo -e \"// v$(sed -rn \\'s/.+\\\"version\\\": \\\"(.*?)\\\".+/\\1/p\\' package.json)\\n// https://github.com/dubrowgn/telegraph\"' > banner.tmp",
"clean": "rm *tmp",
"minify": "uglifyjs telegraph.js -o min.tmp -m -c",
"release": "npm run banner && npm run minify && cat banner.tmp min.tmp > telegraph.min.js && npm run clean",
"test": "node ./test.js"
}
}