UNPKG

id3js

Version:

A modern ID3 parser written completely in JavaScript, making use of typed arrays and the HTML5 File API

44 lines (43 loc) 1.07 kB
{ "name": "id3js", "version": "2.1.1", "author": "43081j", "description": "A modern ID3 parser written completely in JavaScript, making use of typed arrays and the HTML5 File API", "main": "./lib/id3.js", "types": "./lib/id3.d.ts", "type": "module", "repository": { "type": "git", "url": "https://github.com/43081j/id3.git" }, "keywords": [ "id3", "mp3", "parser" ], "files": [ "id3.js", "lib/**/*.js", "lib/**/*.d.ts" ], "license": "MIT", "devDependencies": { "@types/node": "^12.0.8", "@typescript-eslint/eslint-plugin": "^1.10.2", "@typescript-eslint/parser": "^1.10.2", "eslint": "^5.16.0", "eslint-config-google": "^0.13.0", "prettier": "^1.18.2", "rimraf": "^2.6.3", "typescript": "^3.5.2" }, "scripts": { "clean": "rimraf ./lib", "prebuild": "npm run clean", "lint": "eslint \"src/**/*.ts\"", "build": "npm run lint && tsc", "prepare": "npm run build", "prepublishOnly": "npm run lint", "format": "prettier --write \"src/**/*.ts\"" } }