-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.42 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
63
{
"name": "shm-typed-array",
"version": "0.1.1",
"description": "IPC shared memory for NodeJs. Use as Buffer or TypedArray.",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ukrbublik/shm-typed-array.git"
},
"keywords": [
"ipc",
"shm",
"systemv",
"system-v",
"POSIX",
"shared memory",
"typed array",
"TypedArray",
"ArrayBuffer",
"Buffer",
"Int8Array",
"Uint8Array",
"Uint8ClampedArray",
"Int16Array",
"Uint16Array",
"Int32Array",
"Uint32Array",
"Float32Array",
"Float64Array"
],
"author": {
"name": "Oblogin Denis",
"email": "[email protected]",
"url": "https://github.com/ukrbublik"
},
"license": "MIT",
"dependencies": {
"nan": "^2.18.0"
},
"os": [
"!win32"
],
"engines": {
"node": ">=4.0.0"
},
"bugs": {
"url": "https://github.com/ukrbublik/shm-typed-array/issues"
},
"homepage": "https://github.com/ukrbublik/shm-typed-array",
"scripts": {
"build": "node-gyp configure && node-gyp rebuild",
"build:debug": "node-gyp configure --debug && node-gyp rebuild --debug",
"install": "npm run build",
"test": "node test/example.js",
"test:types": "typings-tester --config test/tsconfig.json test/typings.ts"
},
"devDependencies": {
"@types/node": "^20.2.3",
"typescript": "^4.8.4",
"typings-tester": "^0.3.2"
}
}