forked from matthewmueller/date
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.35 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
60
61
62
{
"name": "@lesjoursfr/date",
"version": "1.0.2",
"description": "Dates for humans.",
"license": "MIT",
"repository": "lesjoursfr/date",
"homepage": "https://github.com/lesjoursfr/date#readme",
"bugs": {
"url": "https://github.com/lesjoursfr/date/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "20.x || 22.x || 24.x"
},
"keywords": [
"nlp",
"natural language processing",
"time",
"parser",
"cfg",
"dates",
"humans",
"parsing"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*",
"src/**/*"
],
"scripts": {
"freshlock": "rm -rf node_modules/ && rm .yarn/install-state.gz && rm yarn.lock && yarn",
"check-lint": "eslint",
"check-format": "prettier --check .",
"check-tsc": "tsc --noEmit",
"lint": "eslint --fix",
"format": "prettier --write .",
"build": "tsc -p tsconfig.build.json",
"test": "mocha"
},
"dependencies": {
"debug": "^4.4.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@tsconfig/node20": "^20.1.4",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.14.0",
"mocha": "^11.1.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"packageManager": "[email protected]"
}