moodify
Version:
Create Spotify playlists to both mood and taste - based on https://moodplayl.ist
51 lines (50 loc) • 1.55 kB
JSON
{
"name": "moodify",
"version": "1.0.0",
"description": "Create Spotify playlists to both mood and taste - based on https://moodplayl.ist",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@types/node": "^14.14.34",
"dotenv": "^8.2.0",
"node-fetch": "^2.6.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node-dev": "^1.1.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"scripts": {
"test": "jest --config jestconfig.json",
"start": "ts-node ./src/index.ts",
"build": "tsc src/index.ts",
"dev": "ts-node-dev --poll --no-notify ./src/index.ts",
"format": "prettier --write \"src/**/*.ts\" \"dist/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare" : "npm run build",
"prepublishOnly" : "npm test && npm run lint",
"preversion" : "npm run lint",
"version" : "npm run format && git add -A src",
"postversion" : "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lewisdonovan/moodify.git"
},
"files": [
"dist/**/*"
],
"keywords": ["spotify", "playlist", "generator", "personalised", "mood", "taste", "moodplaylist", "moodify"],
"author": "Lewis Donovan",
"license": "ISC",
"bugs": {
"url": "https://github.com/lewisdonovan/moodify/issues"
},
"homepage": "https://github.com/lewisdonovan/moodify#readme"
}