forked from gamesys/moonshine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 937 Bytes
/
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
{
"name": "moonshine",
"description": "A lightweight Lua virtual machine.",
"keywords": [
"Moonshine",
"Lua",
"JavaScript",
"virtual machine",
"luac"
],
"author": {
"name": "Gamesys Limited.",
"url": "http://gamesyscorporate.com"
},
"contributors": [
{
"name": "Paul Cuthbertson",
"email": "[email protected]"
}
],
"version": "0.2.1",
"engines": {
"node": ">=0.8.x"
},
"main": "./index.js",
"bin": {
"moonshine": "./bin/moonshine"
},
"man": [
"./bin/man/moonshine.1",
"./bin/man/moonshine-debug.1",
"./bin/man/moonshine-distil.1"
],
"homepage": "http://moonshinejs.org",
"repository": {
"type": "git",
"url": "https://github.com/gamesys/moonshine"
},
"license": {
"type": "MIT",
"url": "http://moonshinejs.org/license"
},
"bugs": {
"url": "https://github.com/gamesys/moonshine/issues"
},
"dependencies": {
"express": "3.2.5",
"socket.io": "0.9.14"
}
}