-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 971 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
{
"author": {
"name": "James Knowles",
"email": "james.reuben.knowles.@gmail.com"
},
"bin": "dist/index.js",
"bugs": "http://starforgelabs.atlassian.net/",
"dependencies": {
"@types/debug": "0.0.29",
"@types/nconf": "0.0.33",
"@types/node": "^7.0.5",
"debug": "^2.6.1",
"discord.js": "^11.1.0",
"nconf": "^0.8.4",
"rxjs": "^5.2.0",
"serialport": "^4.0.7",
"uuid": "3.0.1",
"ws": "^2.2.0"
},
"description": "A WebSocket server to provide remote access to an Ohaus balance connected to a machine.",
"license": "UNLICENSED",
"main": "src/index.ts",
"name": "balance-server-2",
"private": true,
"repository": "https://github.com/starforgelabs/balance-server-2.git",
"scripts": {
"install": "tsc",
"make": "rimraf dist && tsc",
"start": "rimraf dist && tsc && node dist/index.js"
},
"typings": "dist/index",
"version": "4.2.0",
"devDependencies": {
"typescript": "^2.3.2"
}
}