forked from jessicah/fit-encoder-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 900 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": "fit-encoder",
"version": "0.1.5",
"description": "Encode FIT files with TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"example": "examples"
},
"scripts": {
"start": "tsc && node dist/index.js",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tihawk/fit-encoder.git"
},
"keywords": [
"fit",
"garmin",
"encode",
"binary",
"workout",
"activity",
"garmin"
],
"author": "Kiril Panayotov Blagoev",
"license": "MIT",
"files": [
"dist/*",
"examples/*"
],
"bugs": {
"url": "https://github.com/tihawk/fit-encoder/issues"
},
"homepage": "https://github.com/tihawk/fit-encoder#readme",
"devDependencies": {
"@types/node": "^18.13.0",
"typescript": "^4.9.5"
}
}