-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 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
49
{
"name": "readable-timespan",
"version": "2.1.0",
"description": "Human readable timespans",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "nyc ava"
},
"repository": {
"type": "git",
"url": "https://github.com/aurbano/readable-timespan.git"
},
"keywords": [
"human",
"readable",
"timespan",
"timestamp",
"milliseconds",
"seconds",
"hours",
"day"
],
"author": "Alejandro U. Alvarez",
"license": "MIT",
"bugs": {
"url": "https://github.com/aurbano/readable-timespan/issues"
},
"homepage": "https://github.com/aurbano/readable-timespan",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"ava": "^2.4.0",
"coveralls": "^3.0.7",
"nyc": "^14.1.1",
"ts-node": "^8.5.2",
"typescript": "^3.7.2"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}