-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "neoputt",
"version": "1.0.0",
"description": "multiplayer minigolf simulator",
"keywords": [
"golf",
"mini",
"minigolf",
"putt"
],
"homepage": "https://github.com/misterhat/neoputt#readme",
"bugs": {
"url": "https://github.com/misterhat/neoputt/issues"
},
"license": "AGPL-3.0+",
"author": "Zorian Medwid <[email protected]>",
"main": "browser.js",
"repository": {
"type": "git",
"url": "git+https://github.com/misterhat/neoputt.git"
},
"scripts": {
"clean": "rm assets/build/* assets.json neoputt.sqlite3",
"build": "npm run build-assets && npm run build-db && npm run build-js",
"build-assets": "node make-assets.js",
"build-db": "rm neoputt.sqlite3 && knex migrate:latest",
"build-js": "browserify browser.js -o assets/build/browser.bundle.js",
"start": "node app | bunyan",
"test": "node test"
},
"dependencies": {
"body-parser": "^1.18.2",
"bresenham": "0.0.4",
"bunyan": "^1.8.12",
"client-sessions": "^0.8.0",
"clone": "^2.1.1",
"csrf": "^3.0.6",
"deep-equal": "^1.0.1",
"ecstatic": "^3.2.0",
"geoip-lite": "^1.2.1",
"hyperscript": "^2.0.2",
"knex": "^0.14.3",
"lzwcompress": "^0.2.4",
"n-dimensional-flood-fill": "^1.0.0",
"node-emoji": "^1.8.1",
"object-hash": "^1.2.0",
"preloader": "^4.0.2",
"rcolor": "^1.0.1",
"sat": "^0.6.0",
"server-router": "^6.0.0",
"sillyname": "^0.1.0",
"simple-peer": "^9.0.0",
"spliddit": "^2.1.1",
"sqlite3": "^3.1.13",
"tcp-bind": "^1.2.0",
"xhr": "^2.4.1"
},
"devDependencies": {
"browserify": "^15.2.0"
}
}