-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 824 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 824 Bytes
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": "node-sysstat",
"version": "1.1.2",
"description": "Node system statistic",
"main": "index.js",
"dependencies": {
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"node-addon-api": "^8.5.0"
},
"scripts": {
"install": "node-gyp-build",
"clean": "npx node-gyp clean",
"test": "node test"
},
"files": [
"/prebuilds",
"/src",
"index.js",
"initstats.js",
"binding.gyp",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/MGorkov/node-sysstat.git"
},
"author": {
"name": "Maksim Gorkov",
"email": "mgorkov@gmail.com",
"url": "http://github.com/MGorkov"
},
"keywords": [
"nodejs",
"statistics"
],
"homepage": "https://github.com/MGorkov/node-sysstat",
"gypfile": true
}