forked from benjamn/es7-async-await
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
{
"author": "Ben Newman <bn@cs.stanford.edu>",
"name": "es7-async-fn",
"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": "1.0.1",
"repository": "polyfills/es7-async-fn",
"license": "MIT",
"main": "index.js",
"bin": "bin/es7-async-await",
"scripts": {
"test": "mocha --reporter spec",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
},
"dependencies": {
"esprima-fb": "*",
"recast": "0"
},
"devDependencies": {
"istanbul": "^0.3.2",
"mocha": "^2.0.1"
},
"engines": {
"node": ">= 0.8"
},
"files": [
"bin",
"index.js",
"runtime.js",
"visitor.js"
]
}