-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
{
"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.27.12",
"@types/jest": "29.5.14",
"@types/node": "20.17.17",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-prettier": "5.2.3",
"fast-check": "2.25.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"rimraf": "5.0.10",
"ts-jest": "29.2.5",
"typescript": "5.7.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.1"
}
}