-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "parse-human-relative-time",
"description": "Parse human relative time strings like \"next Tuesday 3pm\".",
"version": "3.0.2",
"main": "index.js",
"files": [
"index.js",
"date-fns.js",
"parser.js",
"lex.js",
"example.js"
],
"keywords": [
"parse",
"human",
"relative",
"time",
"date"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/parse-human-relative-time",
"repository": "derhuerst/parse-human-relative-time",
"bugs": "https://github.com/derhuerst/parse-human-relative-time/issues",
"license": "ISC",
"engines": {
"node": ">=16"
},
"peerDependencies": {
"date-fns": "^2.7.0",
"luxon": "^2.3.0 || ^3.0.0"
},
"devDependencies": {
"date-fns": "^2.7.0",
"date-fns-tz": "^2.0.0",
"eslint": "^8.6.0",
"luxon": "^3.1.1",
"syntax-cli": "^0.1.12"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"build": "syntax-cli -g grammar.js -m CLR1 -o parser.js",
"test": "node test.js",
"prepublishOnly": "npm run lint && npm run build && npm test"
}
}