-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.85 KB
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": "@enormora/wall-clock",
"version": "1.0.0",
"type": "module",
"description": "Explicit wall-clock time access for TypeScript applications",
"main": "target/build/source/index.js",
"types": "target/build/source/index.d.ts",
"exports": {
".": {
"types": "./target/build/source/index.d.ts",
"import": "./target/build/source/index.js"
},
"./deterministic-wall-clock": {
"types": "./target/build/source/deterministic-wall-clock.d.ts",
"import": "./target/build/source/deterministic-wall-clock.js"
},
"./wall-clock": {
"types": "./target/build/source/wall-clock.d.ts",
"import": "./target/build/source/wall-clock.js"
}
},
"files": [
"target/build/source/",
"!target/build/source/**/*.test.js",
"!target/build/source/**/*.d.ts.map",
"!target/build/source/**/*.map"
],
"keywords": [
"clock",
"deterministic",
"isomorphic",
"test",
"time",
"timer",
"typescript",
"wall-clock"
],
"author": "Christian Rackerseder <git@echooff.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/enormora/wall-clock.git"
},
"devDependencies": {
"@enormora/eslint-config-base": "0.0.61",
"@enormora/eslint-config-mocha-node-assert": "0.0.16",
"@enormora/eslint-config-node": "0.0.46",
"@enormora/eslint-config-typescript": "0.0.69",
"@packtory/cli": "0.0.102",
"@types/mocha": "10.0.10",
"@types/node": "24.13.3",
"c8": "12.0.0",
"eslint": "10.9.0",
"mocha": "11.8.0",
"rust-just": "1.57.0",
"typescript": "6.0.3"
},
"engines": {
"node": "^24.15.0 || ^26.0.0"
}
}