-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.53 KB
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
{
"name": "tinyduration",
"version": "3.4.1",
"description": "ISO-8601 duration parsing and serialization",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "MelleB <npm@melleboersma.nl>",
"keywords": [
"iso-8601",
"duration",
"period",
"date",
"time"
],
"repository": {
"type": "git",
"url": "https://github.com/MelleB/tinyduration.git"
},
"homepage": "https://github.com/MelleB/tinyduration#readme",
"bugs": {
"url": "https://github.com/MelleB/tinyduration/issues"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "2.29.5",
"@types/jest": "29.5.14",
"@types/node": "22.16.5",
"@typescript-eslint/eslint-plugin": "8.38.0",
"@typescript-eslint/parser": "8.38.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jest": "28.14.0",
"eslint-plugin-prettier": "5.5.3",
"fast-check": "2.25.0",
"jest": "29.7.0",
"prettier": "3.6.2",
"rimraf": "6.0.1",
"ts-jest": "29.4.0",
"typescript": "5.8.3"
},
"scripts": {
"test": "jest",
"build": "tsc",
"prepublish": "jest && npm run lint && rimraf dist && tsc",
"lint": "eslint . --ext .ts",
"prettify": "eslint . --ext .ts --fix",
"ci": "jest --coverage && eslint . --ext .ts"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageDirectory": "coverage",
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
]
},
"resolutions": {
"semver": "7.7.2"
}
}