Skip to content
This repository was archived by the owner on Sep 15, 2018. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: package.json to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/npm:lodash:20180130

Latest report for interlock/node-orm2:
https://snyk.io/test/github/interlock/node-orm2
  • Loading branch information
snyk-bot committed Feb 16, 2018
commit 2be86fa15c304dc4fef8275ea9307ea23f3f6ad1
129 changes: 77 additions & 52 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,54 +1,79 @@
{
"author" : "Diogo Resende <[email protected]>",
"name" : "orm",
"description" : "NodeJS Object-relational mapping",
"keywords" : [
"orm",
"odm",
"database",
"mysql",
"postgres",
"redshift",
"sqlite",
"mongodb"
],
"version" : "2.1.3",
"license" : "MIT",
"homepage" : "http://dresende.github.io/node-orm2",
"repository" : "http://github.com/dresende/node-orm2.git",
"contributors": [
{ "name" : "Bramus Van Damme", "email" : "[email protected]" },
{ "name" : "Lorien Gamaroff", "email" : "[email protected]" },
{ "name" : "preslavrachev" },
{ "name" : "Chris Cowan", "email" : "[email protected]" },
{ "name" : "Paul Dixon", "email" : "[email protected]" },
{ "name" : "David Kosub" },
{ "name" : "Arek W", "email" : "[email protected]" },
{ "name" : "Joseph Gilley", "email" : "[email protected]" },
{ "name" : "Benjamin Pannell", "email" : "[email protected]" }
],
"main" : "./lib/ORM",
"scripts" : {
"test" : "make test"
},
"engines" : {
"node" : "*"
},
"analyse" : false,
"dependencies": {
"enforce" : "0.1.2",
"sql-query" : "0.1.15",
"hat" : "0.0.3",
"lodash" : "2.2.1"
},
"devDependencies": {
"mysql" : "2.0.0-alpha9",
"pg" : "2.6.2",
"sqlite3" : "2.1.7",
"async" : "*",
"mocha" : "1.13.0",
"should" : "1.2.2",
"mongodb" : "1.3.19"
},
"optionalDependencies": {}
"author": "Diogo Resende <[email protected]>",
"name": "orm",
"description": "NodeJS Object-relational mapping",
"keywords": [
"orm",
"odm",
"database",
"mysql",
"postgres",
"redshift",
"sqlite",
"mongodb"
],
"version": "2.1.3",
"license": "MIT",
"homepage": "http://dresende.github.io/node-orm2",
"repository": "http://github.com/dresende/node-orm2.git",
"contributors": [
{
"name": "Bramus Van Damme",
"email": "[email protected]"
},
{
"name": "Lorien Gamaroff",
"email": "[email protected]"
},
{
"name": "preslavrachev"
},
{
"name": "Chris Cowan",
"email": "[email protected]"
},
{
"name": "Paul Dixon",
"email": "[email protected]"
},
{
"name": "David Kosub"
},
{
"name": "Arek W",
"email": "[email protected]"
},
{
"name": "Joseph Gilley",
"email": "[email protected]"
},
{
"name": "Benjamin Pannell",
"email": "[email protected]"
}
],
"main": "./lib/ORM",
"scripts": {
"test": "make test"
},
"engines": {
"node": "*"
},
"analyse": false,
"dependencies": {
"enforce": "0.1.2",
"sql-query": "0.1.15",
"hat": "0.0.3",
"lodash": "4.17.5"
},
"devDependencies": {
"mysql": "2.0.0-alpha9",
"pg": "2.6.2",
"sqlite3": "2.1.7",
"async": "*",
"mocha": "1.13.0",
"should": "1.2.2",
"mongodb": "1.3.19"
},
"optionalDependencies": {}
}