New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

babel-preset-node5

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-preset-node5 - npm Package Compare versions

Comparing version

to
10.9.0

18

package.json
{
"name": "babel-preset-node5",
"version": "10.8.0",
"version": "10.9.0",
"description": "Babel preset for Node 5.x (ES6 / ES2015)",

@@ -24,13 +24,13 @@ "repository": "git://github.com/leebenson/babel-preset-node5.git",

"babel-plugin-syntax-trailing-function-commas": "^6.5.0",
"babel-plugin-transform-async-to-generator": "^6.5.0",
"babel-plugin-transform-es2015-destructuring": "^6.6.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.6.3",
"babel-plugin-transform-es2015-parameters": "^6.6.0",
"babel-plugin-transform-async-to-generator": "^6.7.0",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.0",
"babel-plugin-transform-es2015-parameters": "^6.7.0",
"babel-plugin-transform-es2015-sticky-regex": "^6.5.0",
"babel-plugin-transform-es2015-unicode-regex": "^6.5.0",
"babel-plugin-transform-flow-strip-types": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-plugin-transform-strict-mode": "^6.5.2",
"babel-polyfill": "^6.6.1"
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-plugin-transform-strict-mode": "^6.6.5",
"babel-polyfill": "^6.7.2"
}
}

@@ -57,2 +57,5 @@ # Babel 6.x presets for Node 5.x (updated regularly!)

### Via Node API
If you don't want to use a project-wide `.babelrc` file (as above):
```js

@@ -64,2 +67,13 @@ require("babel-core").transform("code", {

And if you _do_, and you want to use vanilla `node` instead of `babel-node` as your CLI, you can create an entry script that references your pre-transpiled code like so:
```js
require('babel-register');
require('path/to/es6/script');
```
... which will then run everywhere Node can.
Of course, make sure to `npm i -S babel-core` or `npm i -S babel-register` respectively, to grab the NPM packages you'll need to transpile on-the-fly.
### Webpack, Gulp, Browserify, etc

@@ -66,0 +80,0 @@