-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
62 lines (62 loc) · 1.52 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "mp3tag.js",
"version": "3.11.2",
"description": "MP3 tagging library written in pure JavaScript",
"keywords": [
"node",
"browser",
"audio",
"mp3",
"tag",
"id3",
"id3v1",
"id3v2",
"id3v2.2",
"id3v2.3",
"id3v2.4"
],
"homepage": "https://mp3tag.js.org",
"bugs": "https://github.com/eidoriantan/mp3tag.js/issues",
"license": "MIT",
"author": {
"name": "Adriane Justine Tan",
"email": "[email protected]",
"url": "https://eidoriantan.me"
},
"contributors": [],
"main": "dist/mp3tag.js",
"types": "types/index.d.ts",
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eidoriantan/mp3tag.js.git"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "standard",
"postlint": "git log -1 --format=%B | commitlint",
"pretest": "npm run lint && npm run build",
"test": "mocha test/index.cjs",
"clean": "rm -rf dist"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"core-js": "^3.7.0",
"mocha": "^10.1.0",
"regenerator-runtime": "0.13.11",
"rollup": "^2.33.1",
"should": "^13.2.3",
"standard": "^17.0.0"
}
}