-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 953 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
36
37
38
39
40
{
"name": "evemit",
"version": "1.0.2",
"description": "Minimal and fast JavaScript event emitter for Node.js and front-end (only 1kb minified!).",
"main": "./evemit.js",
"keywords": [
"event",
"emitter",
"listener"
],
"homepage": "https://github.com/Nicolab/evemit",
"author": {
"name": "Nicolas Tallefourtane",
"url": "http://nicolab.net"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Nicolab/evemit/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "[email protected]:Nicolab/evemit.git"
},
"bugs": "https://github.com/Nicolab/evemit/issues",
"scripts": {
"test": "mocha test/test.js"
},
"devDependencies": {
"gulp": "^3.8.10",
"gulp-header": "^1.2.2",
"gulp-livereload": "^2.1.1",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.0.1",
"gulp-webpack": "^1.1.0",
"webpack": "^1.4.13",
"unit.js": "^1.0.2"
}
}