Skip to content
Permalink
28ed331cd4
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
64 lines (64 sloc) 1.95 KB
{
"name": "my_music",
"version": "1.1.3",
"author": "Vicente Pastor Pastor, Charles Neal, Luke Charles, Mateusz Watras, Gwyn Robins, Ricards Goldbergs",
"license": "ISC",
"description": "My Music Project",
"main": "index.js",
"engines": {
"node": "12.x"
},
"scripts": {
"coverage": "node_modules/.bin/jest --coverage 'unit tests/' && ./node_modules/.bin/istanbul check-coverage --statement 100 --branch 100 --function 100 --line 100",
"dependency": "node_modules/.bin/dependency-check -i bcrypt --unused --no-dev . && node_modules/.bin/dependency-check -i modules --missing .",
"start": "node index.js",
"jsdoc": "node_modules/.bin/jsdoc -c jsdoc.conf",
"linter": "node_modules/.bin/eslint .",
"test": "node_modules/.bin/jest --coverage",
"acceptance": "acceptanceTests/scripts/test.sh"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"fs-extra": "^7.0.1",
"handlebars": "^4.5.3",
"id3js": "^2.1.1",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-session": "^5.12.3",
"koa-static": "^5.0.0",
"koa-views": "^6.2.1",
"markdown": "^0.5.0",
"markdownlint-cli": "^0.18.0",
"mime-types": "^2.1.25",
"sqlite-async": "^1.0.12"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"coverage": "^0.4.1",
"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-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",
"start-server-and-test": "^1.10.6",
"supertest": "^4.0.2"
},
"jest": {
"projects": [
"<rootDir>/jest-test.config.js"
],
"preset": "jest-puppeteer"
}
}