-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 805 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 805 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
34
35
36
37
{
"name": "mmap-mio",
"version": "1.0.0",
"description": "A cross-platform memory-mapping library for nodejs(& TypeScript)",
"homepage": "https://github.com/xujif/node_mmap_mio",
"repository": {
"type": "git",
"url": "https://github.com/xujif/node_mmap_mio"
},
"keywords": [
"mmap",
"memory-mapping",
"C++",
"N-API",
"mio",
"cross platform",
"buffer",
"Typescript"
],
"main": "binding.js",
"types": "typing.d.ts",
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp build",
"rebuild": "node-gyp rebuild"
},
"author": "i@xujif.com",
"license": "MIT",
"gypfile": true,
"dependencies": {
"bindings": "^1.3.1",
"node-addon-api": "^1.0.0"
},
"devDependencies": {
"@types/node": "^10.12.18"
}
}