-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "async-generator",
"version": "0.1.0",
"description": "A helper to create async generators",
"main": "lib/index.js",
"scripts": {
"prebuild": "typings install",
"build": "gulp build",
"prepublish": "npm run build",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggers/async-generator.git"
},
"keywords": [
"async",
"await",
"yield",
"yield*",
"generator",
"iterator",
"iterable",
"observable",
"typescript",
"babel",
"es6",
"es7"
],
"author": "Jacob Eggers",
"license": "MIT",
"bugs": {
"url": "https://github.com/eggers/async-generator/issues"
},
"homepage": "https://github.com/eggers/async-generator#readme",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"del": "^2.1.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-mocha": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^4.1.1",
"gulp-typescript": "^2.9.2",
"merge2": "^0.3.6",
"rx-lite": "^4.0.7",
"tslint": "^3.1.0-dev.1",
"typescript": "^1.7.3",
"typings": "^0.3.1"
},
"dependencies": {
"babel-runtime": "^6.3.13"
}
}