-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "sbffi",
"version": "1.0.4",
"description": "Dynamic C function calls from JS, powered by dyncall.",
"main": "lib/index.js",
"scripts": {
"bench": "node --experimental-wasm-modules --no-warnings test/bench.mjs",
"test": "eslint . && node test/test.js | npx tap-reporter spec",
"clean": "rm -rf build prebuilds",
"test-ci": "eslint . && node test/test.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bengl/sbffi.git"
},
"keywords": [
"dyncall",
"ffi",
"c",
"native",
"addon",
"dynamic",
"function"
],
"author": "Bryan English <bryan@bryanenglish.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bengl/sbffi/issues"
},
"homepage": "https://github.com/bengl/sbffi#readme",
"dependencies": {
"node-addon-api": "^6.0.0",
"prebuild": "^11.0.4"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ffi-napi": "^4.0.3",
"tap-reporter": "^1.0.2",
"test": "^3.3.0"
}
}