-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.5 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
{
"name": "tinyduration",
"version": "3.3.1",
"description": "ISO-8601 duration parsing and serialization",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "MelleB <[email protected]>",
"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": {
"@types/jest": "^29.2.1",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "8.*",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"fast-check": "2.*",
"jest": "^29.2.2",
"prettier": "^3.3.2",
"rimraf": "^5.0.1",
"ts-jest": "^29.0.3",
"typescript": "^5.4.5"
},
"scripts": {
"test": "jest",
"build": "tsc",
"prepublish": "jest && yarn 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.5.3"
}
}