-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 KB
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
{
"name": "stupid-player",
"version": "0.4.4",
"engines": {
"node": ">=8.5.0 <9"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"test/",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"prepare": "npm run build",
"clean": "rm -rf ./dist/*",
"prebuild": "npm run clean",
"build": "tsc",
"prestart": "npm run build",
"start": "node ./dist/index.js",
"pretest": "npm run build",
"test": "mocha --recursive --timeout 15000"
},
"dependencies": {
"@schneefux/lame": "github:schneefux/node-lame#master",
"combined-stream": "^1.0.5",
"magnet-uri": "^5.1.7",
"node-mpg123-util": "github:jorisdugue/node-mpg123-util#master",
"promise": "^7.0.4",
"speaker": "^0.5.3",
"torrent-stream": "^1.0.3"
},
"devDependencies": {
"@types/chai": "3.5.0",
"@types/combined-stream": "1.0.2",
"@types/magnet-uri": "5.1.2",
"@types/mocha": "2.2.40",
"@types/node": "14.14.37",
"@types/torrent-stream": "0.0.5",
"mocha": "3.4.1",
"typescript": "4.2.3"
},
"repository": {
"type": "git",
"url": "git@github.com:kicumkicum/stupid-player.git"
},
"keywords": [
"audio",
"lame",
"mp3",
"music",
"player"
],
"author": "Oleg Akinin <kicumkicum@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kicumkicum/stupid-player/issues"
},
"homepage": "https://github.com/kicumkicum/stupid-player"
}