-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 768 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 768 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
{
"name": "get-last-error",
"version": "1.0.0",
"description": "Calls the windows `GetLastError` function when failed calling other functions with `ffi-napi` library.",
"main": "./src/index.js",
"exports": "./src/index.js",
"scripts": {
"test": "node tests/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jianweiqin/GetLastError"
},
"keywords": [
"getlasterror", "get last error", "last error", "error",
"win32", "windows",
"dll", "ffi"
],
"author": "Jianwei Qin <304586351@qq.com>",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/jianweiqin/GetLastError"
},
"homepage": "https://github.com/jianweiqin/GetLastError",
"os": [
"win32"
],
"devDependencies": {
"ffi-napi": "^4.0.3"
}
}