forked from Moebits/soundcloud.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 988 Bytes
/
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
{
"name": "soundcloud.ts",
"version": "0.3.1",
"description": "Wrapper for the Soundcloud API with typings",
"main": "dist/soundcloud.js",
"types": "dist/soundcloud.d.ts",
"scripts": {
"start": "tsc && node dist/start.js",
"test": "ts-mocha --timeout 30000 -p tsconfig.json test/**/*.spec.ts",
"docs": "typedoc --out docs ./",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/Tenpi/soundcloud.ts"
},
"keywords": [
"soundcloud",
"typescript",
"ts",
"audio",
"music"
],
"author": "Tenpi",
"license": "MIT",
"devDependencies": {
"@tenpi/tslint": "^1.0.5",
"@tenpi/typedoc": "0.0.3",
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"mocha": "^6.2.2",
"typedoc": "^0.15.0",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.0",
"request": "^2.88.0"
}
}