forked from facebook/regenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.02 KB
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 <bn@cs.stanford.edu>",
"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.8.19",
"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": {
"commoner": "~0.10.0",
"esprima-fb": "~13001.1.0-dev-harmony-fb",
"recast": "~0.10.3",
"private": "~0.1.5",
"through": "~2.3.6",
"defs": "~1.1.0"
},
"devDependencies": {
"mocha": "~1.21.4",
"promise": "~6.0.1",
"semver": "~4.0.3"
},
"license": "BSD",
"engines": {
"node": ">= 0.6"
}
}