forked from ask77nl/fit-decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.01 KB
/
package.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.01 KB
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
{
"name": "fit-decoder",
"version": "1.0.5",
"description": "Javascript library for parsing ANT/Garmin .FIT files",
"main": "dist/index.js",
"scripts": {
"test": "nyc npm run test:unit",
"test:unit": "mocha --recursive test",
"build": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ask77nl/fit-decoder.git"
},
"keywords": [
"fit",
"ant",
"garmin",
"parse"
],
"author": "Serguei Alleko",
"maintainers": [
{
"email": "[email protected]",
"name": "Serguei Alleko"
}
],
"private": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/ask77nl/fit-decoder/issues"
},
"homepage": "https://github.com/ask77nl/fit-decoder#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.13.5",
"babel-loader": "^8.2.2",
"chai": "^4.3.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"webpack": "^5.24.1",
"webpack-cli": "^4.5.0"
}
}