UNPKG

id3v2

Version:
99 lines (98 loc) 2.44 kB
{ "name": "id3v2", "version": "1.0.1", "description": "Reads ID3v2 metadata", "main": "dist/src/index.js", "files": [ "dist/src", "src", "index.d.ts" ], "scripts": { "linter": "tslint --project .", "clean": "rimraf dist", "prebuild": "yarn clean", "build": "tsc --sourceMap", "precopy-test-assets": "yarn build", "copy-test-assets": "cp test/*.mp3 dist/test/", "pretest": "yarn copy-test-assets", "test": "mocha --require source-map-support/register --recursive dist/test", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -w", "prerelease": "yarn test && yarn build", "release": "standard-version", "postrelease": "git push --follow-tags origin master && npm publish", "prepublish": "not-in-install && yarn build || echo 'In install cycle, skipping prepublish'", "precoverage": "yarn clean && tsc --inlineSourceMap && cp test/*.mp3 dist/test/", "coverage": "nyc --reporter lcov ./node_modules/.bin/mocha --recursive dist/test --all && codecov" }, "repository": { "type": "git", "url": "KnisterPeter/id3v2" }, "keywords": [ "mp3", "id3v2" ], "author": { "name": "Markus Wolf", "email": "knister.peter@shadowrun-clan.de" }, "license": "MIT", "devDependencies": { "@knisterpeter/standard-tslint": "1.7.2", "@types/chai": "4.1.7", "@types/mocha": "5.2.6", "chai": "4.2.0", "codecov": "3.2.0", "conventional-changelog-cli": "2.0.12", "cz-conventional-changelog": "2.1.0", "in-publish": "2.0.0", "mocha": "6.0.2", "nyc": "13.3.0", "prettier": "1.16.4", "rimraf": "2.6.3", "source-map-support": "0.5.10", "standard-version": "5.0.1", "tslint": "5.13.1", "typescript": "3.3.3333" }, "dependencies": { "@types/node": "11.10.4", "iconv-lite": "0.4.24" }, "publishConfig": { "tag": "next" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "nyc": { "exclude": [ "node_modules", "coverage", "dist/test" ] }, "prettier": { "singleQuote": true }, "renovate": { "extends": [ "config:base" ], "semanticPrefix": "chore:", "lockFileMaintenance": { "enabled": true }, "packageRules": [ { "packagePatterns": [ "^@types/" ], "automerge": true } ] } }