UNPKG

3.29 kBJSONView Raw
1{
2 "name": "babel-preset-env",
3 "version": "1.1.11",
4 "description": "A Babel preset for each environment.",
5 "author": "Henry Zhu <hi@henryzoo.com>",
6 "homepage": "https://babeljs.io/",
7 "license": "MIT",
8 "repository": "https://github.com/babel/babel-preset-env",
9 "main": "lib/index.js",
10 "scripts": {
11 "build": "rimraf lib && babel src -d lib",
12 "build-data": "node ./scripts/build-data.js",
13 "dev": "babel -w src -d lib",
14 "lint": "eslint .",
15 "fix": "eslint . --fix",
16 "ci": "npm run test",
17 "changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'",
18 "test": "npm run build && mocha ./test --compilers js:babel-register -t 5000"
19 },
20 "dependencies": {
21 "babel-plugin-check-es2015-constants": "^6.3.13",
22 "babel-plugin-syntax-trailing-function-commas": "^6.13.0",
23 "babel-plugin-transform-async-to-generator": "^6.8.0",
24 "babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
25 "babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
26 "babel-plugin-transform-es2015-block-scoping": "^6.6.0",
27 "babel-plugin-transform-es2015-classes": "^6.6.0",
28 "babel-plugin-transform-es2015-computed-properties": "^6.3.13",
29 "babel-plugin-transform-es2015-destructuring": "^6.6.0",
30 "babel-plugin-transform-es2015-duplicate-keys": "^6.6.0",
31 "babel-plugin-transform-es2015-for-of": "^6.6.0",
32 "babel-plugin-transform-es2015-function-name": "^6.3.13",
33 "babel-plugin-transform-es2015-literals": "^6.3.13",
34 "babel-plugin-transform-es2015-modules-amd": "^6.8.0",
35 "babel-plugin-transform-es2015-modules-commonjs": "^6.6.0",
36 "babel-plugin-transform-es2015-modules-systemjs": "^6.12.0",
37 "babel-plugin-transform-es2015-modules-umd": "^6.12.0",
38 "babel-plugin-transform-es2015-object-super": "^6.3.13",
39 "babel-plugin-transform-es2015-parameters": "^6.6.0",
40 "babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
41 "babel-plugin-transform-es2015-spread": "^6.3.13",
42 "babel-plugin-transform-es2015-sticky-regex": "^6.3.13",
43 "babel-plugin-transform-es2015-template-literals": "^6.6.0",
44 "babel-plugin-transform-es2015-typeof-symbol": "^6.6.0",
45 "babel-plugin-transform-es2015-unicode-regex": "^6.3.13",
46 "babel-plugin-transform-exponentiation-operator": "^6.8.0",
47 "babel-plugin-transform-regenerator": "^6.6.0",
48 "browserslist": "^1.4.0",
49 "electron-to-chromium": "^1.1.0",
50 "invariant": "^2.2.2"
51 },
52 "devDependencies": {
53 "babel-cli": "^6.11.4",
54 "babel-eslint": "^7.1.1",
55 "babel-helper-fixtures": "^6.22.0",
56 "babel-helper-plugin-test-runner": "^6.18.0",
57 "babel-plugin-transform-flow-strip-types": "^6.8.0",
58 "babel-preset-es2015": "^6.14.0",
59 "babel-register": "^6.14.0",
60 "chai": "^3.0.0",
61 "compat-table": "kangax/compat-table#291c758ac618fff6bf5bb2113a5aa046189f93e2",
62 "eslint": "^3.13.1",
63 "eslint-config-babel": "^5.0.0",
64 "eslint-plugin-flowtype": "^2.29.1",
65 "fs-extra": "^2.0.0",
66 "lodash": "^4.15.0",
67 "mocha": "^3.0.2",
68 "rimraf": "^2.5.4"
69 },
70 "babel": {
71 "presets": [
72 [
73 "es2015",
74 {
75 "loose": true
76 }
77 ]
78 ],
79 "plugins": [
80 "transform-flow-strip-types"
81 ]
82 }
83}