-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 922 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
{
"name": "mp4-metadata",
"version": "1.0.2",
"description": "Fast mp4 moov metadata parsing via optimized file streaming",
"main": "./distribution/index.js",
"scripts": {
"build": "babel source --out-dir distribution",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/nadr0/mp4-metadata"
},
"keywords": [
"mp4",
"moov",
"parser",
"metadata",
".mp4",
"creation time",
"atom"
],
"author": "Kevin Nadro",
"license": "MIT",
"bugs": {
"url": "https://github.com/nadr0/mp4-metadata/issues"
},
"homepage": "https://github.com/nadr0/mp4-metadata",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/runtime": "^7.9.2"
}
}