-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.4 KB
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
{
"name": "sigar",
"description": "Sigar binding for Node.js",
"keywords": ["cluster", "system", "cpu", "os", "network"],
"version": "0.0.2",
"homepage": "http://www.adaltas.com/projects/node-sigar",
"author": "David Worms <david@adaltas.com>",
"repository": {
"type": "git",
"url": "https://github.com/wdavidw/node-sigar.git"
},
"bugs": {
"email": "open@adaltas.com",
"url": "https://github.com/wdavidw/node-sigar.git"
},
"dependencies": {},
"devDependencies": {
"coffee-script": "latest",
"printf": "latest",
"mocha": "latest",
"should": "latest"
},
"contributors": [
{ "name": "Kenneth Bentley", "email": "funisher@gmail.com" },
{ "name": "David Worms", "email": "david@adaltas.com" }
],
"main": "index",
"gypfile": true,
"engines": { "node": ">= 0.6.0" },
"scripts": {
"cmakenotworking": "mkdir -p build/sigar && cp -rp deps/sigar/* build/sigar/ && cd build/sigar && cmake -D CMAKE_BUILD_TYPE=Release -D BUILD_SHARED_LIBS=false . && cmake --build . && node-gyp configure && node-gyp build",
"preinstall": "mkdir -p build/sigar && cp -rp deps/sigar/* build/sigar/ && cd build/sigar && ./autogen.sh && ./configure --prefix=`pwd`/build/sigar --with-pic && make && make install && cd ../.. && node-gyp configure && node-gyp build",
"test": "mocha"
}
}