lambda-router
Advanced tools
Comparing version 0.1.0 to 2.4.0
{ | ||
"name": "lambda-router", | ||
"version": "0.1.0", | ||
"description": "A routing framework for AWS Lambda", | ||
"main": "index.js", | ||
"version": "2.4.0", | ||
"description": "A router to simplify AWS Lambda Functions.", | ||
"main": "src/index.js", | ||
"files": [ | ||
"src" | ||
], | ||
"engines": { | ||
"node": ">=8.10" | ||
}, | ||
"scripts": { | ||
"test": "mocha", | ||
"lint": "eslint . --ignore-path .gitignore", | ||
"cover": "istanbul cover _mocha && codecov", | ||
"docs": "documentation readme -s 'API Docs' -g lib/**/*.js" | ||
"test:coverage": "nyc --check-coverage --lines 90 npm run test:unit && npm run report", | ||
"test": "npm run style && npm run test:unit", | ||
"test:unit": "blue-tape \"test/**/**.spec.js\" | tap-spec", | ||
"test:unit:watch": "npm run test:unit -s & chokidar 'src/**/*.js' 'test/**/*.spec.js' --polling -c \"npm run test:unit -s\"", | ||
"test:watch": "npm run test:coverage -s & chokidar 'src/**/*.js' 'test/**/*.spec.js' --polling -c \"npm run test:coverage -s\"", | ||
"test:ci": "npm run style && blue-tape test/**/**.spec.js | tap-xunit > xunit.xml && blue-tape test/**/**.int.js | tap-xunit > xunit.xml && npm run test:coverage && npm run report:ci", | ||
"report": "nyc report --reporter=html", | ||
"report:ci": "npm run report", | ||
"report:open": "npm run report && open coverage/index.html", | ||
"test:coverage:open": "npm run test:coverage && npm run report:open", | ||
"style": "standard \"src/**/*.js\" | snazzy", | ||
"style:fix": "standard \"src/**/*.js\" --fix", | ||
"jsdoc:generate": "jsdoc ./src/index.js -d ./docs/" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/cyber-z/lambda-router.git" | ||
"url": "ssh://git@git.nike.net:NextGenPlatforms/lambda-router.git" | ||
}, | ||
@@ -21,23 +36,22 @@ "keywords": [ | ||
], | ||
"author": "yu0819ki", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/cyber-z/lambda-router/issues" | ||
"standard": { | ||
"parser": "babel-eslint" | ||
}, | ||
"homepage": "https://github.com/cyber-z/lambda-router#readme", | ||
"author": "Tim Kye", | ||
"license": "Apache-2", | ||
"dependencies": { | ||
"uuid": "^3.3.2" | ||
}, | ||
"devDependencies": { | ||
"codecov": "^1.0.1", | ||
"documentation": "^4.0.0-beta4", | ||
"eslint": "^2.9.0", | ||
"eslint-config-node-style-guide": "^3.0.0", | ||
"istanbul": "^0.4.3", | ||
"mocha": "^2.4.5", | ||
"power-assert": "^1.4.0" | ||
}, | ||
"engines": { | ||
"node": ">=4.3.0 < 5.0.0" | ||
}, | ||
"dependencies": { | ||
"lodash": "^4.12.0" | ||
"aws-sdk": "^2.4.8", | ||
"babel-eslint": "^6.1.2", | ||
"blue-tape": "^0.2.0", | ||
"chokidar-cli": "^1.2.0", | ||
"expect": "1.20.2", | ||
"jsdoc": "^3.4.3", | ||
"nyc": "latest", | ||
"snazzy": "^5.0.0", | ||
"standard": "8.1.0", | ||
"tap-spec": "^4.1.1" | ||
} | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
28165
247
153
0
10
6
1
2
+ Addeduuid@^3.3.2
+ Addeduuid@3.4.0(transitive)
- Removedlodash@^4.12.0
- Removedlodash@4.17.21(transitive)