-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "iso8601-duration",
"version": "2.1.2",
"description": "Node/Js-module for parsing and making sense of ISO8601-durations",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"check": "npx @biomejs/biome check --apply .",
"test": "npm run check && npm run unittests",
"unittests": "tsc && node --test --test-reporter spec test/*.mjs",
"tdd": "npx -y watchlist --eager src test -- npm run unittests",
"prepublishOnly": "tsc",
"release-patch": "npx np patch",
"release-beta": "npx np --tag=beta",
"release-jsr": "npx -y jsr publish"
},
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tolu/ISO8601-duration.git"
},
"keywords": [
"ISO8601",
"duration",
"time"
],
"author": "Tobias Lundin",
"license": "MIT",
"bugs": {
"url": "https://github.com/tolu/ISO8601-duration/issues"
},
"homepage": "https://github.com/tolu/ISO8601-duration#readme",
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@js-temporal/polyfill": "*",
"@types/node": "^20.11.24",
"typescript": "5.3.3"
}
}