UNPKG

musicbrainz-augmentation

Version:
61 lines (60 loc) 1.98 kB
{ "name": "musicbrainz-augmentation", "version": "0.6.0", "description": "MusicBrainz metadata augmentation", "main": "lib/AugmentFromSpotify.js", "author": { "name": "Borewit", "url": "https://github.com/Borewit" }, "license": "MIT", "private": false, "scripts": { "clean": "del-cli lib/** src/**/*.js src/**/*.js.map src/**/*.d.ts test/**/*.js test/**/*.js.map", "compile-src": "tsc -p src", "compile": "npm run compile-src", "compile-test": "tsc -p test", "lint-ts": "tslint 'src/**/*.ts' --exclude 'src/**/*.d.ts' 'test/**/*.ts' --exclude 'test/**/*.d.ts'", "lint-md": "remark -u preset-lint-recommended .", "lint": "npm run lint-md && npm run lint-ts", "fix-lint": "tslint --fix 'src/**/*.ts' --exclude 'src/**/*.d.ts' 'test/**/*.ts' --exclude 'test/**/*.d.ts'", "test": "mocha --require ts-node/register --require source-map-support/register --full-trace test/*.ts", "build": "npm run clean && npm run compile", "start": "npm-run-all compile lint cover-test", "test-coverage": "nyc npm run test", "send-coveralls": "nyc report --reporter=text-lcov | coveralls", "send-codacy": "nyc report --reporter=text-lcov | codacy-coverage" }, "devDependencies": { "@types/chai": "^4.1.7", "@types/mocha": "^5.2.7", "@types/node": "^12.6.2", "chai": "^4.2.0", "del-cli": "^2.0.0", "mocha": "^6.1.4", "remark-cli": "^6.0.1", "remark-preset-lint-recommended": "^3.0.2", "ts-node": "^8.3.0", "tslint": "^5.18.0", "typescript": "^3.5.3" }, "dependencies": { "debug": "^4.1.1", "musicbrainz-api": "^0.5.0", "spotify-web-api-node": "^4.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/Borewit/musicbrainz-augmentation.git" }, "bugs": { "url": "https://github.com/Borewit/musicbrainz-augmentation/issues" }, "keywords": [ "MusicBrainz", "Spotify", "bot", "script", "ISRC" ] }