-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
36 lines (36 loc) · 825 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
{
"name": "asyncgenerator",
"title": "Asynchronous Generators",
"description": "Library for composing asynchronous and event-based operations using ES6 generator type",
"version": "0.1.1",
"homepage": "https://github.com/jhusain/asyncgenerator",
"author": {
"name": "Jafar Husain"
},
"repository": {
"type": "git",
"url": "https://github.com/jhusain/asyncgenerator"
},
"licenses": [
{
"type": "Apache License, Version 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"dependencies": {
"asap": "^1.0.0",
"es6-symbol": "^0.1.0",
"promise": "^6.0.1"
},
"devDependencies": {
"browserify": "^4.1.5"
},
"scripts": {
"build": "node build.js"
},
"keywords": [
"Reactive",
"Events"
],
"main": "asyncgenerator.js"
}