-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "@living-room/service-js",
"version": "0.7.0",
"main": "service.js",
"type": "module",
"description": "http, eventstream, socketio, and osc server for livingroom",
"repository": "[email protected]:living-room/service-js.git",
"author": "Jonathan Dahan <[email protected]> (http://jedahan.com)",
"contributors": [
"Alex Warth <[email protected]> (http://alexwarth.com)",
"Ana Malagon <[email protected]> (https://github.com/atmalagon)",
"Justin Falcone <[email protected]> (http://justinfalcone.com/)"
],
"license": "MIT",
"scripts": {
"start": "node --eval 'import(`./service.js`).then(Room => (new Room.default).listen())'",
"serve:examples": "serve examples",
"lint": "standard *js src/**/*js",
"format": "npm run lint -- --fix",
"test": "ava"
},
"keywords": [
"living-room",
"server",
"service"
],
"dependencies": {
"@koa/cors": "3",
"@living-room/database-js": "^0.7.0",
"@living-room/parser-js": "^0.4",
"ava": "^4.3.0",
"boxen": "^7.0.0",
"chalk": "^5.0.1",
"koa": "^2",
"koa-body": "^5.0.0",
"koa-route": "3",
"koa-send": "^5.0.1",
"koa-socket-2": "^2.0.0",
"nbonjour": "^3.6.3",
"osc": "^2.4.3",
"pick-port": "1.0.1",
"socket.io-client": "^4.5.1",
"table": "^6.8.0"
},
"devDependencies": {
"browser-env": "^3.3.0",
"npm-run-all": "^4",
"serve": "^14.0.1",
"standard": "^17.0.0",
"supertest": "^6.2.4"
},
"ava": {
"require": [
"./test/helpers/setup-browser-env.js"
]
}
}