-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "time-pace-speed",
"version": "0.1.1",
"description": "Simple library for competitions result calculation - time, pace, speed, etc.",
"main": "lib/index.js",
"scripts": {
"compile": "babel --experimental --optional runtime -d lib/ src/",
"prepublish": "npm run compile"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"time",
"duration",
"pace",
"speed",
"distance",
"competition",
"sport"
],
"author": "Zoreslav Goral <gzoreslav@gmail.com>",
"license": {
"type": "MIT",
"url": "https://github.com/gzoreslav/time-pace-speed.git/LICENSE"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gzoreslav/time-pace-speed.git"
},
"tonicExampleFilename": "examples/tonic.js",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"eslint": "^2.6.0",
"grunt": "^0.4.5",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.1.0",
"grunt-eslint": "^18.0.0"
},
"dependencies": {
"moment": "^2.12.0"
}
}