-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.22 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
{
"name": "node-lua-runner",
"version": "2.0.1",
"description": "Real Lua 5.1 in Node.js, for tooling that must interoperate with a Lua 5.1 runtime. A Node-API native addon with the genuine Lua 5.1.5 interpreter and LuaFileSystem compiled in.",
"author": "Maurice Schmicking",
"contributors": [
"Medaeus245"
],
"main": "index.js",
"keywords": [
"lua",
"lua5.1",
"node-lua",
"node-lua-binding",
"nodejs",
"native",
"addon",
"bindings",
"node-api",
"napi",
"embed",
"scripting",
"lua51",
"embedded",
"interop"
],
"files": [
"index.js",
"binding.gyp",
"src/",
"vendor/",
"README.md",
"LICENSE",
"THIRD-PARTY-NOTICES.md"
],
"scripts": {
"install": "node-gyp rebuild",
"test": "node --test",
"prepublishOnly": "npm test"
},
"dependencies": {
"node-addon-api": "^8.9.1"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/mschmicking/node-lua-runner#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mschmicking/node-lua-runner.git"
},
"bugs": {
"url": "https://github.com/mschmicking/node-lua-runner/issues"
},
"license": "ISC",
"gypfile": true
}