-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 920 Bytes
/
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
{
"name": "typed-duration",
"version": "2.0.0",
"description": "Zero-dependency typed duration library for JavaScript",
"main": "dist/index.js",
"directories": {
"lib": "lib",
"dist": "dist"
},
"files": [
"dist",
"package.json",
"README.md"
],
"devDependencies": {
"@types/jest": "^29.5.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "4.4"
},
"scripts": {
"test": "jest",
"prepublishOnly": "jest && tsc",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwulf/typed-duration.git"
},
"keywords": [
"duration",
"time",
"type-safe",
"typescript",
"value typed"
],
"author": "Josh Wulf <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jwulf/typed-duration/issues"
},
"homepage": "https://github.com/jwulf/typed-duration#readme"
}