-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
46 lines (46 loc) · 1.7 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
43
44
45
46
{
"name": "microtime",
"version": "3.1.1",
"description": "Get the current time in microseconds",
"author": "Wade Simmons <[email protected]> (http://wades.im/mons)",
"homepage": "https://github.com/wadey/node-microtime",
"repository": "git://github.com/wadey/node-microtime.git",
"main": "./index",
"license": "MIT",
"keywords": [
"microtime",
"microseconds",
"gettimeofday"
],
"engines": {
"node": ">= 14.13.0"
},
"scripts": {
"install": "node-gyp-build",
"rebuild": "node-gyp rebuild",
"prebuild": "prebuildify -t 14.13.0 -t [email protected] --napi --strip",
"prebuild-linux-x64": "prebuildify -t 14.13.0 -t [email protected] --napi --strip",
"prebuild-linux-arm": "prebuildify-cross -i linux-armv7 -t 14.13.0 --napi --strip",
"prebuild-linux-arm64": "prebuildify-cross -i linux-arm64 -t 14.13.0 --napi --strip",
"prebuild-darwin-x64+arm64": "prebuildify -t 14.13.0 -t [email protected] --arch x64+arm64 --napi --strip",
"prebuild-win32-x64": "prebuildify -t 14.13.0 -t [email protected] --napi --strip",
"prebuild-win32-x86": "prebuildify -t 14.13.0 -t [email protected] --napi --strip",
"download-prebuilds": "prebuildify-ci download",
"test": "node test.js",
"format": "clang-format -i src/microtime.cc",
"lint-test": "standard && clang-format -output-replacements-xml src/microtime.cc | (! grep -q '<replacement ') && node test.js"
},
"dependencies": {
"node-addon-api": "^5.0.0",
"node-gyp-build": "^4.4.0"
},
"devDependencies": {
"clang-format": "^1.8.0",
"node-gyp": "^9.0.0",
"prebuildify": "^5.0.0",
"prebuildify-ci": "^1.0.5",
"prebuildify-cross": "^5.0.0",
"standard": "^17.1.0"
},
"gypfile": true
}