-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 833 Bytes
/
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
{
"name": "s-ago",
"version": "2.2.0",
"description": "Human readable relative times (eg. 4 minutes ago)",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc --declaration index.ts",
"coverage": "npm run build && nyc --reporter=lcov --reporter=text ava",
"test": "npm run build && ava"
},
"repository": {
"type": "git",
"url": "https://github.com/sebastiansandqvist/s-ago.git"
},
"keywords": [
"relative",
"date",
"time",
"ago",
"timestamp",
"format"
],
"author": "sebastian sandqvist",
"license": "MIT",
"bugs": {
"url": "https://github.com/sebastiansandqvist/s-ago/issues"
},
"homepage": "https://github.com/sebastiansandqvist/s-ago",
"devDependencies": {
"ava": "0.24.0",
"nyc": "11.4.1",
"typescript": "3.0.3"
}
}