Skip to content
Permalink
90de731931
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
61 lines (61 sloc) 1.75 KB
{
"name": "10_auth",
"version": "1.1.3",
"description": "A simple dynamic website template to be used as the base for various projects",
"main": "index.js",
"engines": {
"node": "12.x"
},
"scripts": {
"coverage": "./node_modules/.bin/jest --coverage 'unitTests/' && ./node_modules/.bin/istanbul check-coverage --statement 100 --branch 100 --function 100 --line 100",
"cucumber": "node_modules/.bin/cucumber-js ./features -r ./steps",
"dependency": "./node_modules/.bin/dependency-check -i bcrypt --unused --no-dev . && node_modules/.bin/dependency-check --missing .",
"start": "node index.js",
"jsdoc": "node_modules/.bin/jsdoc -c jsdoc.conf",
"linter": "node_modules/.bin/eslint .",
"test": "./node_modules/.bin/jest --coverage unitTests/"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.7",
"bcrypt-promise": "^2.0.0",
"koa": "^2.6.2",
"koa-body": "^4.0.8",
"koa-router": "^7.4.0",
"koa-session": "^5.10.1",
"koa-static": "^5.0.0",
"koa-views": "^6.1.5",
"nodemailer-promise": "^2.0.0",
"sqlite-async": "^1.0.12"
},
"devDependencies": {
"coverage": "^0.4.1",
"cucumber": "^6.0.5",
"dependency": "0.0.1",
"dependency-check": "^4.1.0",
"eslint": "^5.15.2",
"handlebars-validate": "^0.1.2",
"http-status-codes": "^1.3.2",
"istanbul": "^0.4.5",
"jest": "^24.9.0",
"jest-cucumber": "^2.0.11",
"jest-image-snapshot": "^2.11.0",
"jest-puppeteer": "^4.3.0",
"jscpd": "^2.0.16",
"jsdoc": "^3.6.3",
"jsdoc-route-plugin": "^0.1.0",
"markdownlint": "^0.17.0",
"puppeteer": "^1.20.0",
"puppeteer-har": "^1.1.1",
"shelljs": "^0.8.3",
"start-server-and-test": "^1.10.6",
"supertest": "^4.0.2"
},
"jest": {
"projects": [
"<rootDir>/jest-test.config.js"
],
"preset": "jest-puppeteer"
}
}