This repository has been archived by the owner on Jun 3, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "@music-metadata/s3",
"version": "0.6.1",
"description": "Extension for music-metadata to read metadata from audio files on Amazon S3 storage",
"main": "lib/index.js",
"typings": "lib/index",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"scripts": {
"clean": "del-cli lib/**/*.js lib/**/*.js.map lib/**/*.d.ts coverage",
"mocha": "mocha",
"test": "npm run lint && npm run mocha",
"compile-lib": "tsc -p lib/tsconfig.json",
"compile": "npm run compile-lib",
"build": "npm run clean && yarn run compile",
"lint": "tslint 'lib/**/*.ts' --exclude 'lib/**/*.d.ts' 'test/**/*.ts' --exclude 'test/**/*.d.ts'"
},
"keywords": [
"audio",
"metadata",
"S3",
"AWS",
"chunk",
"range",
"tags",
"media",
"amazon",
"music",
"cloud",
"wav",
"flac"
],
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Borewit/music-metadata-s3.git"
},
"bugs": {
"url": "https://github.com/Borewit/music-metadata-s3/issues"
},
"dependencies": {
"@tokenizer/s3": "^0.1.2",
"music-metadata": "^6.4.0"
},
"devDependencies": {
"aws-sdk": "^2.688.0",
"chai": "^4.2.0",
"del-cli": "^3.0.1",
"mocha": "^7.2.0",
"tslint": "^6.1.2",
"typescript": "^3.9.3"
}
}