-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "gopro-telemetry",
"version": "1.2.9",
"description": "Reads telemetry from the GPMF track in GoPro cameras (Hero5 and later) and converts it to multiple formats",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "npm run build && jest",
"build": "esbuild index.js --outfile=__tests__/browser/dist.js --bundle --platform=browser --format=cjs --banner:js=\"'use strict';var module = {}, exports;\" --sourcemap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JuanIrache/gopro-telemetry.git"
},
"keywords": [
"GoPro",
"GPS",
"GPMF",
"mgjson",
"GPX",
"CSV",
"KML",
"geojson",
"accelerometer",
"gyroscope",
"telemetry",
"metadata",
"sensors",
"converter",
"reader",
"parser"
],
"author": "Juan Irache Duesca",
"license": "ISC",
"peerDependencies": {
"egm96-universal": "^1.1.0"
},
"peerDependenciesMeta": {
"egm96-universal": {
"optional": true
}
},
"devDependencies": {
"@types/jest": "^29.5.1",
"esbuild": "^0.17.17",
"jest": "^29.5.0",
"jest-puppeteer": "^8.0.6",
"puppeteer": "^19.10.0"
},
"dependencies": {
"binary-parser": "^2.2.1"
}
}