-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"author": "Ben Newman <[email protected]>",
"name": "es7-async-await",
"description": "Transformer that converts async functions and await expressions into ECMAScript 6 generator functions and yield expressions",
"keywords": [
"async",
"await",
"promises",
"generators",
"yield",
"es6",
"es7",
"ast",
"rewriting",
"refactoring",
"codegen",
"syntax",
"transformation",
"parsing",
"pretty-printing"
],
"version": "0.1.1",
"homepage": "http://github.com/benjamn/es7-async-await",
"repository": {
"type": "git",
"url": "git://github.com/benjamn/es7-async-await.git"
},
"license": "MIT",
"main": "index.js",
"bin": "bin/es7-async-await",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --reporter spec"
},
"dependencies": {
"esprima-fb": "~8001.1001.0-dev-harmony-fb",
"through": "~2.3.6",
"recast": "~0.9.6"
},
"devDependencies": {
"mocha": "~2.0.1"
},
"engines": {
"node": ">= 0.8"
}
}