-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "node-sigar",
"version": "0.0.16",
"description": "node bindings to sigar",
"keywords": [
"node-sigar",
"sigar",
"node",
"cpu",
"proc",
"process",
"pid",
"ppid",
"ps"
],
"homepage": "https://github.com/codejamninja/node-sigar",
"bugs": {
"url": "https://github.com/codejamninja/node-sigar/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Jam Risser",
"email": "[email protected]",
"url": "https://codejam.ninja"
},
"files": [
"lib",
"Makefile"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/codejamninja/node-sigar.git"
},
"scripts": {
"build": "make -s build",
"clean": "make -s clean",
"compile": "make -s compile",
"format": "make -s format",
"install": "(node-pre-gyp install --fallback-to-build && node lib/install) || true",
"lint": "make -s lint",
"node-gyp": "node-gyp",
"node-pre-gyp": "node-pre-gyp",
"node-pre-gyp-github": "node-pre-gyp-github",
"prepare": "make -s prepare",
"prepublishOnly": "make -s prepublish-only",
"publish-binaries": "make -s publish-binaries",
"purge": "make -s purge",
"spellcheck": "make -s spellcheck",
"start": "make -s start",
"test": "make -s test"
},
"dependencies": {
"bindings": "^1.5.0",
"core-js": "^3.6.5",
"node-pre-gyp": "^0.14.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/bindings": "^1.3.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"cspell": "^4.0.57",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-jam": "^0.2.20",
"gnumake": "^0.3.0",
"jest": "^25.4.0",
"jest-sonar-reporter": "^2.0.0",
"node-addon-api": "^2.0.0",
"node-gyp": "^6.1.0",
"node-pre-gyp-github": "^1.4.3",
"prettier": "^2.0.5",
"shx": "^0.3.2",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=6.0.0"
},
"eslintIgnore": [
"lib"
],
"jest": {
"testRegex": "tests(/|/.*/)[^_/]*[jt]sx?$",
"verbose": true
},
"gypfile": true,
"binary": {
"host": "https://github.com/codejamninja/node-sigar/releases/download/",
"module_name": "sigar",
"module_path": "build-tmp-napi-v{napi_build_version}/Release",
"package_name": "{module_name}-v{version}-{platform}-{arch}-napi{napi_build_version}.tar.gz",
"remote_path": "{version}",
"napi_versions": [
1,
3
]
}
}