-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 898 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
{
"name": "buttons-are-cool-gateway",
"version": "1.3.0",
"description": "Node.js server to expose the buttonsare.cool 100 button USB serial board via HTTP and websockets.",
"repository": "https://github.com/mildmojo/buttons-are-cool-gateway",
"main": "index.js",
"bin": "index.js",
"scripts": {
"lint": "$(npm bin)/eslint *.js",
"server": "node index.js",
"test-server": "TESTMODE=true node index.js",
"test": "$(npm bin)/mocha test/**/*.js"
},
"author": "mildmojo",
"license": "WTFPL",
"devDependencies": {
"eslint": "^4.7.0",
"eslint-plugin-async-await": "0.0.0",
"mocha": "^3.5.3",
"pkg": "^4.2.4"
},
"dependencies": {
"chalk": "^2.1.0",
"cjson": "^0.5.0",
"express": "^4.15.4",
"nconf": "^0.8.4",
"serialport": "^6.0.0",
"ws": "^3.2.0",
"xml2js": "^0.4.19"
},
"pkg": {
"assets": "public/**/*"
}
}