forked from google/traceur-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 850 Bytes
/
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
{
"name": "traceur",
"version": "0.0.2",
"description": "Experimental ES6 to ES5 compiler",
"keywords": [
"javascript",
"ecmascript",
"language",
"es5",
"es6",
"ES.next",
"harmony",
"compiler",
"transpiler"
],
"author": "Traceur Authors",
"license": "Apache License 2.0",
"engines": {
"node": ">=0.8"
},
"main": "./src/node/traceur.js",
"bin": {
"traceur": "./traceur"
},
"scripts": {
"test": "make test"
},
"homepage": "http://code.google.com/p/traceur-compiler/",
"bugs": "http://code.google.com/p/traceur-compiler/issues/list",
"repository": {
"type": "git",
"url": "https://code.google.com/p/traceur-compiler/"
},
"dependencies": {
"commander": ">=1.1"
},
"devDependencies": {
"closure-library": ">=1.0",
"source-map": ">=0.1.16"
}
}