-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 831 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
{
"name": "events-async",
"version": "1.2.1",
"description": "A wrapper around the EventEmitter to handle promise based async events",
"main": "index.js",
"scripts": {
"test": "happiness && npm run babel && mocha",
"babel": "babel src --out-dir lib",
"watch": "babel src --watch --out-dir lib"
},
"keywords": [
"events",
"EventEmitter",
"async",
"promise"
],
"author": "Wes Todd",
"license": "ISC",
"devDependencies": {
"happiness": "^5.5.0",
"mocha": "^2.3.3",
"babel-cli": "^6.5.0",
"babel-preset-es2015": "^6.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wesleytodd/events-async.git"
},
"bugs": {
"url": "https://github.com/wesleytodd/events-async/issues"
},
"homepage": "https://github.com/wesleytodd/events-async"
}