forked from aaronfrost/grunt-traceur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
50
51
52
53
54
55
56
57
{
"name": "grunt-traceur",
"description": "A grunt plugin for Google's Traceur-Compile, a lib to compile ES6 JavaScript into ES5 JavaScript.",
"version": "0.2.3",
"homepage": "https://github.com/aaronfrost/grunt-traceur",
"author": {
"name": "Aaron Frost",
"email": "[email protected]",
"url": "40win.com"
},
"contributors": [
{
"name": "Manuel Braun",
"email": "[email protected]"
},
{
"name": "Jeff McRiffey",
"email": "[email protected]"
}
],
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "git://github.com/aaronfrost/grunt-traceur.git"
},
"bugs": {
"url": "https://github.com/aaronfrost/grunt-traceur/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/aaronfrost/grunt-traceur/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"es6-promises": "^1.0.8",
"traceur": "git://github.com/google/traceur-compiler#27d1a782c10155a2209af71d2f71c8a56dc0bcfe"
},
"peerDependencies": {
"grunt": "^0.4.4"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-nodeunit": "^0.4.1"
},
"keywords": [
"gruntplugin"
]
}