-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 975 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
36
37
38
39
40
{
"name": "showtimeago",
"version": "4.0.9",
"description": "ShowTimeAgo is a utility that provides a human-readable format of how long ago a date was with zero configuration.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev" : "nodemon index.js",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackie1santana/showTimeAgoUtility.git"
},
"keywords": [
"showTimeAgo",
"time ago",
"time",
"date",
"date format",
"relative time",
"time utility",
"time formatting",
"date utility"
],
"author": "Jackie Santana",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackie1santana/showTimeAgoUtility/issues"
},
"homepage": "https://github.com/jackie1santana/showTimeAgoUtility#readme",
"devDependencies": {
"jest": "^28.1.2",
"nodemon": "^3.1.4"
},
"engines": {
"node": ">=14.0.0"
}
}