-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
58
59
60
61
62
63
64
65
66
67
{
"name": "@svrooij/sonos",
"version": "0.0.0-development",
"description": "A node library to control your sonos devices, written in typescript",
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"build": "tsc",
"jest": "jest --forceExit",
"generate": "npx @svrooij/sonos-docs combine && npx @svrooij/sonos-docs generate ./.generator/ts/ ./",
"lint-fix": "eslint ./src/*.ts ./src/**/*.ts --fix",
"lint": "eslint ./src/*.ts ./src/**/*.ts",
"prepack": "npm run build",
"serve-docs": "docker-compose -f ./docs/docker-compose.yml up jekyll",
"test": "npm run lint && jest --forceExit"
},
"repository": {
"type": "git",
"url": "https://github.com/svrooij/node-sonos-ts.git"
},
"keywords": [
"sonos",
"typescript",
"real-time",
"home-automation"
],
"author": "Stephan van Rooij <[email protected]> (https://svrooij.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/svrooij/node-sonos-ts/issues"
},
"homepage": "https://svrooij.io/node-sonos-ts/",
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.15",
"@types/node-fetch": "^2.5.10",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"chai": "^4.3.4",
"eslint": "^7.6.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-plugin-import": "^2.22.1",
"glob": "^7.1.6",
"handlebars": "^4.7.7",
"jest": "^26.6.3",
"nock": "^13.0.11",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^3.8.5"
},
"dependencies": {
"debug": "4.3.1",
"fast-xml-parser": "3.19.0",
"guid-typescript": "^1.0.9",
"html-entities": "^2.3.2",
"node-fetch": "^2.6.1",
"typed-emitter": "^1.3.1"
},
"files": [
"README.md",
"LICENSE",
"lib/**/*.ts",
"lib/**/*.js"
]
}