-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "@automaid/yamaha-avr-service",
"version": "1.0.0",
"description": "Expose Yamaha AVRs as a HTTP Endpoint",
"main": "src/index.js",
"bin": {
"yamaha-service": "bin/yamaha-service"
},
"scripts": {
"start": "bin/yamaha-service",
"lint": "eslint src/** bin/** test/**",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/automaid/yamaha-avr-service.git"
},
"author": "Max Jöhnk <maxjoehnk@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/automaid/yamaha-avr-service/issues"
},
"homepage": "https://github.com/automaid/yamaha-avr-service#readme",
"dependencies": {
"bunyan": "^1.8.10",
"bunyan-format": "^0.2.1",
"js-yaml": "^3.9.0",
"lodash.get": "^4.4.2",
"restify": "^5.0.1",
"restify-errors": "^4.3.0",
"yamaha-nodejs": "^0.7.8",
"yargs": "^8.0.2"
},
"devDependencies": {
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"eslint": "^4.3.0",
"mocha": "^3.5.0",
"sinon": "^2.4.1",
"sinon-chai": "^2.12.0"
}
}