-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "chron-time",
"version": "0.0.4",
"description": "A tiny library to parse and store a structured time format for exact dates or intervals when the exact date or time is unknown",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mattiasrunge/chron-time.git"
},
"keywords": [
"time",
"date",
"datetime",
"history",
"fuzzy",
"interval"
],
"author": "Mattias Runge <[email protected]>",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/mattiasrunge/chron-time/issues"
},
"homepage": "https://github.com/mattiasrunge/chron-time#readme",
"dependencies": {
"moment": "2.22.0",
"moment-timezone": "0.5.14"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-es2015-arrow-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoping": "6.26.0",
"babel-plugin-transform-es2015-modules-amd": "6.24.1",
"chai": "4.1.2",
"chai-datetime": "1.5.0",
"jscs": "3.0.7",
"jshint": "2.9.5",
"mocha": "5.0.5"
},
"engines": {
"node": ">= 5.7.0"
},
"scripts": {
"test": "make tests"
}
}