Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-transform-replace-object-assign

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-transform-replace-object-assign - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

.travis.yml

27

package.json
{
"name": "babel-plugin-transform-replace-object-assign",
"version": "0.2.0",
"description": "Allows you to provide custom implementation of Object.assin in babel builds",
"repository": "github.com/newoga/babel-plugin-transform-object-assign",
"author": "Neil Gabbadon",
"version": "0.2.1",
"description": "Allows you to provide custom implementation of Object.assign in babel builds",
"repository": {
"type": "git",
"url": "https://github.com/newoga/babel-plugin-transform-replace-object-assign"
},
"author": "Neil Gabbadon <neil.gabbadon@gmail.com> (https://github.com/newoga)",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && mkdir lib && babel src --out-dir lib"
"test": "istanbul test _mocha",
"prebuild": "rm -rf lib/",
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"keywords": [
"assign",
"babel",
"babel-plugin"
],
"dependencies": {
"babel-preset-es2015": "^6.3.13"
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"simple-assign": "0.1.0"
}
}
## babel-plugin-transform-replace-object-assign
[![Build Status](https://travis-ci.org/newoga/babel-plugin-transform-replace-object-assign.svg?branch=master)](https://travis-ci.org/newoga/babel-plugin-transform-replace-object-assign)
[![npm version](https://img.shields.io/npm/v/babel-plugin-transform-replace-object-assign.svg?style=flat-square)](https://www.npmjs.com/package/babel-plugin-transform-replace-object-assign)
[![npm downloads](https://img.shields.io/npm/dm/babel-plugin-transform-replace-object-assign.svg?style=flat-square)](https://www.npmjs.com/package/babel-plugin-transform-replace-object-assign)

@@ -30,3 +33,3 @@ Replaces `Object.assign` with a custom implementation that you provide in plugin configuration. This plugin works similarly to the [babel-plugin-transform-object-assign](https://www.npmjs.com/package/babel-plugin-transform-object-assign) plugin except it allows you to provide your own implementation that you would like to replace `Object.assign` with rather than the `_extends` helper that Babel uses.

"plugins": [
["transform-object-assign", "lodash.assign"]
["transform-replace-object-assign", "lodash.assign"]
]

@@ -33,0 +36,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc