forked from pierremtb/easy-fit
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
79 lines (79 loc) · 2.43 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"author": {
"name": "jimmykane"
},
"bugs": {
"url": "https://github.com/jimmykane/fit-parser"
},
"contributors": [
{
"email": "[email protected]",
"name": "Dimitrios Kanellopoulos"
},
{
"email": "[email protected]",
"name": "Wasa Choksuwattanasakul"
}
],
"description": "Parse your .FIT files easily, directly from JS (Garmin, Polar, Suunto)",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel": "^6.3.26",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^3.4.1",
"del": "^2.2.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.3",
"gulp-jshint": "^2.1.0",
"gulp-mocha": "^2.2.0",
"jshint": "^2.10.2",
"mocha": "^2.3.4",
"run-sequence": "^1.1.5"
},
"directories": {},
"engine": "node >= 0.10.x",
"homepage": "https://github.com/jimmykane/fit-parser",
"keywords": [
"fit",
"ant",
"garmin",
"parse"
],
"license": "MIT",
"main": "dist/fit-parser.js",
"maintainers": [
{
"email": "[email protected]",
"name": "Dimitrios Kanellopoulos"
}
],
"name": "fit-file-parser",
"optionalDependencies": {},
"private": false,
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jimmykane/fit-parser.git"
},
"scripts": {
"example-output": "node_modules/gulp/bin/gulp.js; node examples/example.js examples/example.fit > examples/output.json",
"example-output-tank": "node_modules/gulp/bin/gulp.js; node examples/example.js examples/example-diving.fit > examples/output-diving.json",
"example-output-summary-first": "node_modules/gulp/bin/gulp.js; node examples/example.js examples/triathlon_summary_first.fit > examples/output_summary_first.json",
"example-output-summary-last": "node_modules/gulp/bin/gulp.js; node examples/example.js examples/triathlon_summary_last.fit > examples/output_summary_last.json",
"example": "node_modules/gulp/bin/gulp.js; node examples/example.js examples/triathlon_summary_first.fit",
"test": "node_modules/gulp/bin/gulp.js;",
"build": "node_modules/gulp/bin/gulp.js babel"
},
"version": "1.20.0",
"dependencies": {
"buffer": "^5.1.0"
}
}