-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
35 lines (35 loc) · 881 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
33
34
35
{
"name": "eev",
"version": "0.1.5",
"description": "A tiny, fast, zero-dependency event emitter",
"main": "eev.js",
"types": "eev.d.ts",
"directories": {},
"scripts": {
"test": "jasmine-node test/*.spec.js",
"min": "uglifyjs eev.js --source-map \"filename=eev.min.js.map\" -m -c -o eev.min.js && echo 'Minified size' && cat eev.min.js | gzip -9f | wc -c"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisdavies/eev"
},
"keywords": [
"emitter",
"events",
"event",
"listener",
"pubsub",
"trigger",
"observe"
],
"author": "Chris Davies <ferociousturtle@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisdavies/eev/issues"
},
"homepage": "https://github.com/chrisdavies/eev",
"devDependencies": {
"jasmine-node": "^1.14.5",
"uglify-js": "^3.3.4"
}
}