This repository was archived by the owner on Apr 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.51 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
58
59
60
61
62
{
"name": "babel-preset-jongleberry",
"description": "Jongleberry's babel presets",
"version": "3.4.0",
"author": "Jonathan Ong <[email protected]> (http://jongleberry.com)",
"license": "MIT",
"repository": "jongleberry/babel-preset-jongleberry",
"dependencies": {
"babel-plugin-lodash": "^3.1.0",
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-transform-async-to-module-method": "^6.5.2",
"babel-plugin-transform-flow-strip-types": "^6.5.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-plugin-typecheck": "^3.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.0",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-1": "^6.5.0",
"bluebird": "^3.3.3"
},
"devDependencies": {
"babel-core": "^6.6.0",
"codecov": "^2.1.0",
"lodash": "^4.11.2",
"mkdirp": "^0.5.1",
"mocha": "^3.0.0",
"nyc": "^10.1.2",
"react": "^15.0.0",
"rimraf": "^2.5.2",
"standard": "^10.0.0",
"uglify-js": "^3.0.6"
},
"scripts": {
"lint": "standard --fix *.js test/*.js",
"test": "mocha --bail",
"test-cov": "nyc node_modules/mocha/bin/_mocha && nyc report --reporter=lcov"
},
"keywords": [
"babel",
"preset",
"react",
"node",
"es6",
"es7",
"es2015",
"es2016",
"isomorphic"
],
"files": [
"load.js",
"node.js",
"react.js",
"isomorphic.js"
],
"main": "node.js",
"nyc": {
"exclude": [
"node_modules"
]
}
}