-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.17 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
44
45
46
47
48
{
"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"
}
}