-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.3 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "electron-node-ref",
"description": "Turn Buffer instances into \"pointers\"",
"engines": {
"node": ">= 10.0"
},
"keywords": [
"native",
"buffer",
"extensions",
"c++",
"pointer",
"reference",
"dereference",
"type",
"int",
"long",
"float",
"double",
"byte",
"64",
"napi"
],
"version": "3.0.4",
"license": "MIT",
"author": "Ravi Shrestha <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/raviSussol/electron-node-ref.git"
},
"main": "./lib/ref.js",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"docs": "node docs/compile",
"test": "echo test",
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --tag-armv",
"prepack": "",
"release": "np"
},
"dependencies": {
"debug": "^4.1.1",
"electron-bindings": "^1.0.2",
"get-symbol-from-current-process-h": "^1.0.2",
"node-addon-api": "^2.0.0",
"node-gyp-build": "^4.2.1"
},
"devDependencies": {
"dox": "0.9.0",
"highlight.js": "^10.0.0",
"jade": "^1.11.0",
"marked": "^1.0.0",
"mocha": "^7.1.1",
"np": "^7.5.0",
"nyc": "^15.0.0",
"prebuildify": "^3.0.4",
"prebuildify-ci": "^1.0.5",
"weak-napi": "^2.0.0"
}
}