{
  "name": "id3-parser",
  "version": "3.0.0",
  "description": "A pure JavaScript id3 tag parser.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "src",
    "lib"
  ],
  "scripts": {
    "lint": "tslint src/**/*.ts test/**/*.ts",
    "lint-fix": "tslint src/**/*.ts test/**/*.ts --fix",
    "test": "TS_NODE_PROJECT='test/tsconfig.json' mocha --require ts-node/register 'test/*.spec.ts' --reporter dot",
    "build": "rm -rf lib && tsc -P tsconfig.json",
    "prepublish": "npm run lint && npm run test && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/creeperyang/id3-parser.git"
  },
  "keywords": [
    "id3",
    "id3 parser",
    "id3 tag",
    "id3v2",
    "id3v1",
    "mp3 metadata",
    "mp3"
  ],
  "author": "creeperyang",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/creeperyang/id3-parser/issues"
  },
  "homepage": "https://github.com/creeperyang/id3-parser#readme",
  "engines": {
    "node": ">=16"
  },
  "devDependencies": {
    "@types/mocha": "^10.0.1",
    "@types/node": "^20.3.1",
    "mocha": "^10.2.0",
    "ts-node": "^10.9.1",
    "tslint": "^6.1.3",
    "typescript": "^5.1.3"
  }
}
