This repository was archived by the owner on May 22, 2025. It is now read-only.
forked from rclnodejs/ref-napi
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.41 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.41 KB
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
63
64
65
{
"name": "@tigerconnect/ref-napi",
"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": "4.0.0-tc8",
"license": "MIT",
"author": "Anna Henningsen <anna@addaleax.net>",
"repository": {
"type": "git",
"url": "git://github.com/tigertext/node-ref-napi.git"
},
"main": "./lib/ref.js",
"types": "./lib/ref.d.ts",
"typesVersions": {
"<=4.1": {
"*": [
"ts4.1/*"
]
}
},
"scripts": {
"docs": "node docs/compile",
"test": "nyc mocha --expose-gc",
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --tag-armv",
"prepack": "prebuildify-ci download && ([ $(ls prebuilds | wc -l) = '6' ] || (echo 'Some prebuilds are missing'; exit 1))"
},
"dependencies": {
"@types/node": "*",
"debug": "^4.3.1",
"get-symbol-from-current-process-h": "^1.0.2",
"node-addon-api": "^4.2.0",
"node-gyp-build": "^4.3.0"
},
"devDependencies": {
"dox": "0.9.0",
"highlight.js": "^10.0.0",
"marked": "^1.0.0",
"mocha": "^8.4.0",
"nyc": "^15.0.0",
"prebuildify": "^4.1.2",
"prebuildify-ci": "^1.0.5",
"pug": "^3.0.2",
"weak-napi": "^2.0.0"
}
}