-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "mmap-ipc",
"version": "1.0.0",
"packageType": "module",
"description": "Maps a shared memory as the backing store and provide it as Nodejs Buffer (aka. Napi::Buffer)",
"keywords": [
"mmap",
"shm",
"shared memory",
"IPC",
"flock",
"file lock"
],
"bugs": "https://github.com/th3r0b0t/js-mmap-ipc/issues",
"main": "index.js",
"author": "Shahab Ouraie - mailto:[email protected]",
"license": "Mit",
"repository": {
"type": "git",
"url": "git+https://github.com/th3r0b0t/js-mmap-ipc.git"
},
"os": [
"linux"
],
"dependencies": {
"bindings": "*",
"node-addon-api": "*",
"node-gyp": "*"
},
"scripts": {
"preinstall": "npm update; node-gyp rebuild;",
"reconf": "node-gyp configure",
"clean": "node-gyp clean",
"run:without_dbg": "node index.js",
"build:dbg": "node-gyp -j 8 build --debug",
"build:release": "node-gyp -j 8 build",
"rebuild:dbg": "node-gyp -j 8 rebuild --debug",
"rebuild:release": "node-gyp -j 8 rebuild"
}
}