-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
37 lines (37 loc) · 922 Bytes
/
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
{
"name": "mmap-object",
"description": "Wrap a shared memory-mapped file in a plain old object.",
"main": "lib/mmap-object",
"scripts": {
"test": "mocha test/test-*",
"install": "node-pre-gyp install --fallback-to-build"
},
"binary": {
"module_name": "mmap-object",
"module_path": "./lib",
"host": "https://github.com/allenluce/mmap-object/releases/download/{version}"
},
"version": "1.5.1",
"author": "Allen Luce",
"repository": {
"type": "git",
"url": "https://github.com/allenluce/mmap-object.git"
},
"license": "ISC",
"gypfile": true,
"dependencies": {
"async": "^3.2.4",
"nan": "^2.17.0",
"node-gyp": "^9.3.1",
"node-pre-gyp": "^0.13.0"
},
"devDependencies": {
"chai": "^4.3.7",
"mkdirp": "^2.1.4",
"mocha": "^10.2.0",
"node-pre-gyp-github": "^1.4.4",
"tar": "^6.1.13",
"temp": "^0.9.4",
"which": "^3.0.0"
}
}