forked from alexeisnyk/juice-shop
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update package.json.bak to latest version
- Loading branch information
1 parent
6182e68
commit 7003747
Showing
1 changed file
with
18 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "juice-shop", | ||
"version": "5.0.0-SNAPSHOT", | ||
"version": "5.1.0-SNAPSHOT", | ||
"description": "An intentionally insecure JavaScript Web Application", | ||
"homepage": "https://www.owasp.org/index.php/OWASP_Juice_Shop_Project", | ||
"author": "Björn Kimminich <[email protected]> (https://www.owasp.org/index.php/User:Bjoern_Kimminich)", | ||
|
@@ -43,11 +43,11 @@ | |
"cookie-parser": "~1.4", | ||
"cors": "~2.8", | ||
"dottie": "~2.0", | ||
"errorhandler": "~1.5", | ||
"epilogue-js": "~0.7", | ||
"errorhandler": "~1.5", | ||
"express": "~4.15", | ||
"express-jwt": "~5.3", | ||
"fs-extra": "^3.0.0", | ||
"fs-extra": "~4.0", | ||
"glob": "~5.0", | ||
"grunt": "~1.0", | ||
"grunt-angular-templates": "~1.1", | ||
|
@@ -58,19 +58,19 @@ | |
"grunt-contrib-uglify": "~3.0", | ||
"grunt-text-replace": "~0.4", | ||
"hashids": "~1.1", | ||
"helmet": "~3.6", | ||
"helmet": "~3.8", | ||
"html-entities": "~1.2", | ||
"js-yaml": "3.8.2", | ||
"jsonwebtoken": "~7.4", | ||
"js-yaml": "3.9", | ||
"jsonwebtoken": "~8", | ||
"jssha": "~2.3", | ||
"marsdb": "^0.6.11", | ||
"morgan": "~1.8", | ||
"multer": "~1.3", | ||
"pdfkit": "~0.8", | ||
"replace": "~0.3", | ||
"request": "~2.81.0", | ||
"sanitize-html": "1.4.2", | ||
"sequelize": "~1.7", | ||
"sequelize-restful": "~0.4", | ||
"sequelize": "~4", | ||
"serve-favicon": "~2.4", | ||
"serve-index": "~1.9", | ||
"socket.io": "~2.0", | ||
|
@@ -81,14 +81,13 @@ | |
"chai": "~4", | ||
"codeclimate-test-reporter": "~0.5", | ||
"cross-spawn": "~5.1", | ||
"form-data": "~2.2", | ||
"form-data": "~2.3", | ||
"frisby": "~2.0", | ||
"http-server": "~0.10", | ||
"istanbul": "~0.4", | ||
"jasmine-reporters": "~2.2", | ||
"jest": "~20", | ||
"jest": "~21", | ||
"karma": "~1.7", | ||
"karma-chrome-launcher": "~2.1", | ||
"karma-chrome-launcher": "~2.2", | ||
"karma-cli": "~1.0", | ||
"karma-coverage": "~1.1", | ||
"karma-firefox-launcher": "~1.0", | ||
|
@@ -99,11 +98,11 @@ | |
"lcov-result-merger": "~1.2", | ||
"mocha": "~3", | ||
"nyc": "~11", | ||
"phantomjs-prebuilt": "~2.1", | ||
"protractor": "~4", | ||
"phantomjs-prebuilt": "~2", | ||
"protractor": "~5", | ||
"shelljs": "~0.7", | ||
"sinon": "~2.3", | ||
"sinon-chai": "~2.12", | ||
"sinon": "~3", | ||
"sinon-chai": "~2.13", | ||
"socket.io-client": "~2.0", | ||
"standard": "~10", | ||
"stryker": "~0", | ||
|
@@ -113,9 +112,6 @@ | |
"stryker-karma-runner": "~0", | ||
"stryker-mocha-runner": "~0" | ||
}, | ||
"peerDependencies": { | ||
"phantomjs-prebuilt": "~2.1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bkimminich/juice-shop.git" | ||
|
@@ -127,8 +123,8 @@ | |
"scripts": { | ||
"postinstall": "bower install && grunt minify && grunt docker", | ||
"start": "node app", | ||
"test": "standard && karma start karma.conf.js && nyc mocha test/server", | ||
"frisby": "istanbul cover ./test/apiTests.js", | ||
"test": "standard && karma start karma.conf.js && nyc --report-dir=./build/reports/coverage/server-tests mocha test/server", | ||
"frisby": "nyc --report-dir=./build/reports/coverage/api-tests node ./test/apiTests.js", | ||
"preupdate-webdriver": "npm install", | ||
"update-webdriver": "webdriver-manager update", | ||
"preprotractor": "npm run update-webdriver", | ||
|
@@ -165,8 +161,7 @@ | |
"reporter": [ | ||
"lcov", | ||
"text-summary" | ||
], | ||
"report-dir": "./build/reports/coverage/server-tests" | ||
] | ||
}, | ||
"jest": { | ||
"testMatch": [ | ||
|