forked from avz/node-posix-clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 815 Bytes
/
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
{
"name": "posix-clock",
"version": "1.0.0",
"description": "POSIX clock_gettime(), clock_getres() and clock_nanosleep() for NodeJS",
"keywords": [
"posix",
"clock",
"clock_gettime",
"clock_getres",
"clock_nanosleep",
"monotonic",
"time",
"nanosleep"
],
"homepage": "https://github.com/avz/node-posix-clock",
"repository": {
"type": "git",
"url": "https://github.com/avz/node-posix-clock.git"
},
"license": "BSD",
"author": "Artem Zaytsev <[email protected]>",
"main": "./main.js",
"engines": {
"node": ">=0.10"
},
"os": [
"linux",
"freebsd",
"darwin"
],
"dependencies": {
"nan": "^2.5.1"
},
"devDependencies": {
"nodeunit": ">=0.8"
},
"scripts": {
"test": "./node_modules/nodeunit/bin/nodeunit tests"
}
}