-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
43 lines (43 loc) · 984 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
42
43
{
"name": "es6ify",
"version": "1.6.0",
"description": "browserify v2 transform to compile JavaScript.next (ES6) to JavaScript.current (ES5) on the fly.",
"main": "es6ify.js",
"scripts": {
"docme": "JSDOC_GITHUBIFY_BRANCH=master docme README.md -- --configure .jsdocrc",
"test": "tap test/*.js"
},
"repository": "thlorenz/es6ify",
"homepage": "https://thlorenz.github.io/es6ify/",
"dependencies": {
"through": "~2.2.7",
"traceur": "0.0.79",
"xtend": "~2.2.0"
},
"devDependencies": {
"tap": "~0.4.0",
"proxyquire": "~0.4.0",
"convert-source-map": "~0.4.1",
"browserify": "~5.12.1"
},
"keywords": [
"traceur",
"JavaScript.next",
"ES6",
"browserify",
"browserify-transform",
"v2",
"js",
"plugin",
"transform"
],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"license": "MIT",
"engine": {
"node": ">=0.8"
}
}