forked from wadey/node-microtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.28 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
{
"name": "microtime",
"version": "3.0.0",
"description": "Get the current time in microseconds",
"author": "Wade Simmons <wade@wades.im> (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": ">= 4.0.0"
},
"scripts": {
"install": "node-gyp-build",
"rebuild": "node-gyp rebuild",
"prebuild": "prebuildify -t 8.14.0 -t electron@3.0.0 --napi --strip",
"download-prebuilds": "prebuildify-ci download",
"prebuildify-cross-armv7": "prebuildify-cross --platform=linux --arch=arm --arm-version=7 -- -t 8.14.0 --napi --strip",
"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": "^1.2.0",
"node-gyp-build": "^3.8.0"
},
"devDependencies": {
"clang-format": "^1.2.4",
"node-gyp": "^3.8.0",
"prebuildify": "^2.11.0",
"prebuildify-ci": "^1.0.4",
"prebuildify-cross": "^3.1.2",
"standard": "^12.0.1"
},
"gypfile": true
}