forked from facebook/regenerator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"author": "Ben Newman <[email protected]>",
"name": "regenerator",
"description": "Source transformer enabling ECMAScript 6 generator functions (yield) in JavaScript-of-today (ES5)",
"keywords": [
"generator",
"yield",
"coroutine",
"rewriting",
"transformation",
"syntax",
"codegen",
"rewriting",
"refactoring",
"transpiler",
"desugaring",
"ES6"
],
"version": "0.6.5",
"homepage": "http://github.com/facebook/regenerator",
"repository": {
"type": "git",
"url": "git://github.com/facebook/regenerator.git"
},
"main": "main.js",
"bin": "bin/regenerator",
"scripts": {
"test": "node test/run.js"
},
"dependencies": {
"commander": "~2.1.0",
"esprima-fb": "~6001.1001.0-dev-harmony-fb",
"recast": "~0.7.2",
"promise": "~5.0.0",
"private": "~0.1.5",
"through": "~2.3.4",
"defs": "~0.6.2"
},
"devDependencies": {
"mocha": "~1.13.0",
"semver": "~2.1.0"
},
"license": "BSD",
"engines": {
"node": ">= 0.6"
}
}