-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 864 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
41
42
{
"name": "node-sysstat",
"version": "1.0.2",
"description": "Node system statistic",
"main": "index.js",
"dependencies": {
"node-addon-api": "^8.0.0",
"node-gyp": "^10.1.0"
},
"devDependencies": {
"mocha": "^5.1.1"
},
"scripts": {
"install": "node-gyp rebuild",
"test": "mocha",
"build": "node-gyp rebuild",
"clean": "node-gyp clean"
},
"files": [
"/src",
"index.js",
"initstats.js",
"binding.gyp",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://git.sbis.ru/explain.sbis.ru/node-sysstat.git"
},
"author": {
"name": "Maksim Gorkov",
"email": "[email protected]",
"url": "http://github.com/MGorkov"
},
"keywords": [
"nodejs",
"statistics"
],
"homepage": "https://github.com/MGorkov/node-sysstat",
"gypfile": true
}