-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"author": "Kawa al Saleem",
"bin": {
"yamaha-nr-nodejs": "bin/release/yamaha-nr-nodejs.js"
},
"types": "bin/release/yamaha-nr-nodejs.d.ts",
"typings": "bin/release/yamaha-nr-nodejs.d.ts",
"typescript": {
"definition": "bin/release/yamaha-nr-nodejs.d.ts"
},
"bugs": {
"email": "yamaha-nr-nodejs.bugs@kawa.nl",
"url": "https://github.com/kawaalsaleem/yamaha-nr-nodejs/issues"
},
"dependencies": {
"lodash": "^4.17.11",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"xml-js": "^1.6.8"
},
"description": "Controls for a Yamaha stereo receiver",
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/lodash": "^4.14.119",
"@types/request-promise": "^4.1.42",
"gh-pages": "^2.0.1",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"typescript": "^3.2.2"
},
"homepage": "https://github.com/kawaalsaleem/yamaha-nr-nodejs",
"license": "MIT",
"main": "bin/release/yamaha-nr-nodejs.js",
"name": "yamaha-nr-nodejs",
"repository": {
"type": "git",
"url": "https://github.com/kawaalsaleem/yamaha-nr-nodejs.git"
},
"scripts": {
"build": "tsc",
"start": "npm run build",
"test": "jest --config jestconfig.json",
"docs": "typedoc --out docs src",
"gh-pages": "rimraf docs && npm run docs && gh-pages -d docs"
},
"version": "1.0.3"
}