-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.36 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
{
"name": "node-epoch",
"version": "2.0.0",
"description": "High-precision absolute-time epoch timer for Node.js on Windows using Timer Queue",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"require": "./index.js",
"types": "./index.d.ts"
}
},
"gypfile": true,
"scripts": {
"build": "node-gyp rebuild",
"build:debug": "node-gyp rebuild --debug",
"clean": "node-gyp clean",
"rebuild": "node-gyp rebuild",
"test": "node test/index.test.js",
"test:bench": "node test/bench.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"timer", "epoch", "high-precision", "low-latency", "windows",
"trading", "realtime", "n-api", "addon", "timeout", "scheduler"
],
"author": "00nx",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/00nx/node-epoch.git"
},
"bugs": {
"url": "https://github.com/00nx/node-epoch/issues"
},
"homepage": "https://github.com/00nx/node-epoch#readme",
"engines": {
"node": ">=14.0.0"
},
"os": ["win32"],
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"node-gyp": "^10.0.0"
},
"files": [
"index.js",
"index.d.ts",
"binding.gyp",
"src/",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}