-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 895 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": "after-events",
"version": "2.0.0",
"description": "Event Emitter with hooks for listener return values",
"main": "after-events.js",
"scripts": {
"test": "mocha test.js -R spec",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "git://github.com/Havvy/after-events.git"
},
"keywords": [
"events",
"event-emitter"
],
"author": "Ryan Scheel",
"license": "ISC",
"bugs": {
"url": "https://github.com/Havvy/after-events/issues"
},
"homepage": "https://github.com/Havvy/after-events",
"dependencies": {
"bluebird": "^3.0.0"
},
"devDependencies": {
"gulp": "^3.8.8",
"gulp-sourcemaps": "^1.2.4",
"gulp-sweetjs": "^0.5.4",
"sweet-bdd": "~1.0.0",
"mocha": "~1.17.0",
"better-assert": "~1.0.0",
"sinon": "~1.7.3",
"deep-eql": "~0.1.3"
},
"files": [
"after-events.js"
]
}