-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "babel-archive",
"private": true,
"license": "MIT",
"scripts": {
"test": "make test",
"build": "make build",
"lint": "make lint",
"fix": "make fix"
},
"devDependencies": {
"babel-core": "^7.0.0-alpha.7",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^7.0.0-alpha.7",
"babel-preset-flow": "^7.0.0-alpha.7",
"babel-preset-stage-0": "^7.0.0-alpha.7",
"babel-register": "^7.0.0-alpha.7",
"chalk": "1.1.1",
"codecov": "^1.0.1",
"eslint": "^3.9.0",
"eslint-config-babel": "^6.0.0",
"eslint-plugin-flowtype": "^2.20.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.0.0",
"gulp-newer": "^1.0.0",
"gulp-plumber": "^1.0.1",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"lerna": "^2.0.0-beta.38",
"lerna-changelog": "^0.2.0",
"mocha": "^3.0.0",
"through2": "^2.0.0"
},
"devEngines": {
"node": ">= 0.10 <= 7.x",
"npm": "2.x || 3.x || 4.x"
},
"babel": {
"comments": false,
"presets": [
[
"es2015",
{
"loose": true
}
],
"flow",
"stage-0"
]
}
}