-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 885 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 885 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
{
"name": "node-shared-mem",
"version": "2.1.0",
"description": "High-performance native addon for mapping existing cross-process shared memory regions into Node.js",
"main": "addon.js",
"gypfile": true,
"dependencies": {
"bindings": "~1.5.0",
"node-addon-api": "^8.7.0"
},
"devDependencies": {
"node-gyp": "^12.3.0",
"electron": "^42.2.0",
"electron-mocha": "^13.1.0",
"standard": "^17.1.0",
"tape": "^5.9.0"
},
"scripts": {
"build": "node-gyp rebuild",
"test": "tape test/test.js --timeout=180s",
"test:electron": "npx electron-mocha --no-sandbox test/test.electron.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aardvark-platform/node-shared-mem.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"author": "Aardvark Platform Team",
"license": "MIT"
}