package.json
{
"name": "music-server",
"version": "0.1.6",
"description": "Stateless NodeJS app to serve music data through REST APIs",
"main": "./src/index.js",
"engines": {
"node": ">=7.0"
},
"keywords": [
"node",
"express",
"es6",
"streaming",
"music"
],
"scripts": {
"start": "node ./src/index.js",
"dev": "nodemon ./src/index.js",
"start:watch": "npm-run-all --parallel run:watch lint:watch test:watch",
"lint": "eslint --ignore-path .eslintignore . ",
"lint:watch": "esw --ignore-path .eslintignore . --watch",
"test:specs": "cross-env NODE_ENV=test PORT=48000 STATUS_USERNAME=test STATUS_PASSWORD=test mocha --recursive --exit ./src/",
"test:specs:watch": "npm run test:specs -- --watch",
"test": "npm run test:specs",
"test:watch": "npm-run-all --parallel test:spec:watch",
"cover": "cross-env NODE_ENV=test PORT=48000 STATUS_USERNAME=test STATUS_PASSWORD=test nyc mocha --recursive --exit ./src/",
"postcover": "cp coverage/coverage-final.json coverage/coverage.json",
"security-check": "yarn audit"
},
"repository": {
"type": "git",
"url": "https://github.com/shierro/music-server"
},
"author": "Theodoro S. Pelingan Jr.",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.3",
"sinon": "^7.2.3",
"supertest": "^3.4.2"
},
"dependencies": {
"aws-sdk": "^2.395.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
"dotenv-safe": "^6.1.0",
"express": "^4.16.4",
"express-healthcheck": "^0.1.0",
"helmet": "^3.15.0",
"http-auth": "^3.2.3",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"multer-s3": "^2.9.0",
"uuid": "^3.3.2",
"uuid-validate": "https://github.com/shierro/uuid-validate/tarball/master",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.6.0"
},
"pre-commit": [
"lint",
"security-check",
"cover"
]
}