forked from agenda/human-interval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "@lesjoursfr/human-interval",
"version": "1.0.2",
"description": "Human readable time measurements",
"license": "MIT",
"repository": "lesjoursfr/human-interval",
"homepage": "https://github.com/lesjoursfr/human-interval#readme",
"bugs": {
"url": "https://github.com/lesjoursfr/human-interval/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "20.x || 22.x || 24.x"
},
"keywords": [
"interval",
"time",
"date"
],
"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": {
"numbered": "^1.1.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@tsconfig/node20": "^20.1.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.5",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^16.0.0",
"mocha": "^11.1.0",
"prettier": "^3.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0"
},
"packageManager": "[email protected]"
}