-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "serverboy",
"version": "0.0.4",
"description": "A gameboy emulator based off of gameboy-online and optimized to run on a server with hooks for scripting and streaming output.",
"main": "./src/interface.js",
"scripts": {
"test": "node ./tests/runner.js | tee ./tests/results/test_report.txt",
"test_generate": "node ./tests/runner.js -- generate",
"start": "node ./src/interface.js"
},
"keywords": [
"gameboy",
"emulator",
"scripting",
"pure javascript"
],
"author": {
"name": "Daniel Shumway",
"email": "shumway.danny@gmail.com",
"url": "http://www.latinforimagination.com/"
},
"license": "GPL 2",
"repository": {
"type": "git",
"url": "https://github.com/danShumway/serverboy.js"
},
"bugs": {
"url": "https://github.com/danShumway/serverboy.js/issues"
},
"homepage": "https://github.com/danShumway/serverboy.js",
"devDependencies": {
"@latinfor/distilled": "^1.0.4",
"browserify": "^16.2.3",
"express": "^4.16.3",
"lodash": "^4.17.11",
"pngjs": "^3.3.3",
"socket.io": "^2.1.1"
}
}