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

localsync

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

localsync - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

README.md

19

package.json
{
"name": "localsync",
"version": "1.0.6",
"version": "1.0.7",
"description": "a lightweight module to sync JS objects in realtime across tabs / windows of a browser.",

@@ -22,11 +22,14 @@ "main": "lib/index.js",

"start": "run-p build-watch test-watch",
"clean": "run-p clean-lib clean-doc",
"clean": "run-p clean-lib clean-doc clean-test",
"clean-lib": "rimraf lib",
"clean-doc": "rimraf doc",
"clean-test": "rimraf coverage.lcov",
"prebuild": "npm run clean",
"build": "babel src/lib -d lib",
"build-watch": "npm run build -- --watch",
"pretest": "npm run build",
"test": "mocha --harmony --es_staging --require test/require",
"test-watch": "npm run test -- --watch",
"pretest-mocha": "npm run build",
"test-mocha": "mocha --harmony --es_staging --require test/require",
"test": "nyc npm run test-mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test-watch": "npm run test-mocha -- --watch",
"prerelease": "npm run test",

@@ -53,4 +56,2 @@ "release": "npm version patch && npm publish",

"devDependencies": {
"mocha": "latest",
"rewire": "^2.5.1",
"babel-cli": "^6.7.7",

@@ -60,6 +61,10 @@ "babel-preset-es2015": "^6.6.0",

"babel-register": "latest",
"codecov": "^1.0.1",
"esdoc": "^0.4.6",
"esdoc-es7-plugin": "0.0.3",
"mocha": "latest",
"ncp": "^2.0.0",
"npm-run-all": "^2.1.1",
"nyc": "^6.4.4",
"rewire": "^2.5.1",
"rimraf": "^2.5.2"

@@ -66,0 +71,0 @@ },

@@ -13,5 +13,6 @@ /**

/** CLEAN EVERYTHING PRE BUILD */
, 'clean': 'run-p clean-lib clean-doc'
, 'clean': 'run-p clean-lib clean-doc clean-test'
, 'clean-lib': 'rimraf lib'
, 'clean-doc': 'rimraf doc'
, 'clean-test': 'rimraf coverage.lcov'

@@ -24,5 +25,7 @@ /** COMPILE */

/** TEST */
, 'pretest': 'npm run build'
, 'test': 'mocha --harmony --es_staging --require test/require'
, 'test-watch': 'npm run test -- --watch'
, 'pretest-mocha': 'npm run build'
, 'test-mocha': 'mocha --harmony --es_staging --require test/require'
, 'test': 'nyc npm run test-mocha'
, 'coverage': 'nyc report --reporter=text-lcov > coverage.lcov && codecov'
, 'test-watch': 'npm run test-mocha -- --watch'

@@ -29,0 +32,0 @@ /** RELEASE */

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