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

load-yaml-file

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

load-yaml-file - npm Package Compare versions

Comparing version 0.1.1 to 0.2.0

10

package.json
{
"name": "load-yaml-file",
"version": "0.1.1",
"version": "0.2.0",
"license": "MIT",
"repository": "LinusU/load-yaml-file",
"engines": {
"node": ">=4"
"node": ">=6"
},

@@ -15,9 +15,9 @@ "scripts": {

"js-yaml": "^3.13.0",
"pify": "^2.3.0",
"pify": "^4.0.1",
"strip-bom": "^3.0.0"
},
"devDependencies": {
"mocha": "^3.0.2",
"standard": "^7.1.2"
"mocha": "^6.0.2",
"standard": "^12.0.1"
}
}

@@ -9,3 +9,3 @@ /* eslint-env mocha */

return loadYamlFile('foo.yml').then(data => {
assert.deepEqual(data, { foo: true })
assert.deepStrictEqual(data, { foo: true })
})

@@ -16,4 +16,4 @@ })

const data = loadYamlFile.sync('foo.yml')
assert.deepEqual(data, { foo: true })
assert.deepStrictEqual(data, { foo: true })
})
})
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