-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.24 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
50
51
52
53
54
55
56
57
58
59
{
"name": "time-delta",
"version": "1.0.0",
"description": "Formats difference between two dates as a human-readable string in almost any language",
"scripts": {
"build": "npm run build-locales",
"build-locales": "./bin/build-locales.js",
"prepublishOnly": "npm run build && npm run test",
"test": "mocha"
},
"license": "MIT",
"author": "Slava Fomin II <slava@fomin.io>",
"repository": "https://github.com/betsol/time-delta",
"homepage": "https://github.com/betsol/time-delta",
"bugs": {
"url": "https://github.com/betsol/time-delta/issues"
},
"engines": {
"node": ">=12"
},
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"docs/",
"lib/",
"locales/",
"types/",
"README.md",
"CHANGELOG.md",
"index.js"
],
"keywords": [
"cldr",
"date",
"delta",
"diff",
"difference",
"format",
"i18n",
"internationalization",
"l10n",
"locales",
"localization",
"time",
"translation"
],
"dependencies": {
"is-node": "^1.0.2",
"numerous": "^1.0.3"
},
"devDependencies": {
"cldr": "^7.1.0",
"del": "^6.0.0",
"expect.js": "^0.3.1",
"js-beautify": "^1.14.0",
"mocha": "^9.0.3",
"p-limit": "^3.1.0"
}
}