-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1001 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1001 Bytes
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
{
"name": "@rr0/time",
"type": "module",
"version": "0.11.2",
"author": "RR0 <rr0@rr0.org>",
"description": "EDTF parsing",
"homepage": "https://github.com/RR0/time#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RR0/time.git"
},
"main": "src/index.mjs",
"types": "types/index.d.mts",
"scripts": {
"build": "rimraf ./types && ./node_modules/typescript/bin/tsc",
"pretest": "npm run build",
"test": "node --test",
"test-ts": "tsx README-ts.test.ts",
"test-ci": "node --test --experimental-test-coverage --test-reporter spec",
"circular-deps": "dpdm src",
"prepublishOnly": "npm run test && npm run test-ts"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"EDTF",
"date",
"time",
"parsing",
"ISO-8601"
],
"devDependencies": {
"rimraf": "^6.0.1",
"typescript": "^5.6.2",
"tsc": "^2.0.4",
"tsx": "^4.19.2",
"@types/node": "^22.7.7"
}
}