-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
66 lines (66 loc) · 1.69 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
63
64
65
66
{
"name": "icecast-parser",
"version": "4.0.2",
"description": "Node.js module for getting and parsing metadata from SHOUTcast/Icecast radio streams",
"main": "dist/Parser.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ghaiklor/icecast-parser.git"
},
"author": {
"name": "Eugene Obrezkov",
"email": "[email protected]",
"url": "https://ghaiklor.com"
},
"bugs": {
"url": "https://github.com/ghaiklor/icecast-parser/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=14"
},
"homepage": "https://github.com/ghaiklor/icecast-parser",
"keywords": [
"shoutcast",
"SHOUTcast",
"icecast",
"metadata",
"parser",
"radio",
"cli",
"internet",
"stream"
],
"files": [
"dist"
],
"scripts": {
"all": "npm run clean && npm run build && npm run test && npm run lint",
"build": "tsc",
"changelog": "standard-changelog -i CHANGELOG.md --same-file",
"clean": "rm -rf coverage dist",
"commit": "git-cz",
"lint": "eslint --fix .",
"prepublishOnly": "npm run all",
"preversion": "npm run all",
"test": "jest"
},
"devDependencies": {
"@types/jest": "26.0.14",
"@typescript-eslint/eslint-plugin": "4.2.0",
"@typescript-eslint/parser": "4.2.0",
"eslint": "7.10.0",
"eslint-config-standard-with-typescript": "19.0.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "24.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"git-cz": "4.7.1",
"jest": "29.7.0",
"standard-changelog": "2.0.24",
"ts-jest": "26.4.0",
"typescript": "4.0.3"
}
}