-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
43 lines (43 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"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": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
},
"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\""
}
}