-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 908 Bytes
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
{
"name": "fluent-date",
"version": "1.0.2",
"description": "A multi-language (Chinese, English) fluent date parser (relative time, duration).",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"build": "tsc -p .",
"test-ts": "tsc tst/ts/test.ts && node tst/ts/test.js",
"test-js": "node tst/js/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinwchn/fluent-date.git"
},
"keywords": [
"time",
"ago",
"relative",
"format",
"chinese",
"multi-language"
],
"author": "kevinwchn",
"license": "ISC",
"bugs": {
"url": "https://github.com/kevinwchn/fluent-date/issues"
},
"homepage": "https://github.com/kevinwchn/fluent-date#readme",
"devDependencies": {
"@types/jest": "^26.0.10",
"jest": "^26.4.0",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"files": [
"lib/**/*"
]
}