-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "thinglator-driver-sonos",
"license": "MIT",
"description": "Allows the Thinglator platform to talk to Sonos speakers",
"version": "4.1.0",
"maintainers": [
{
"name": "Richard Willars",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/richardwillars/thinglator-driver-sonos.git"
},
"dependencies": {
"sonos": "^1.8.1"
},
"peerDependencies": {
"thinglator": "3.x"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.14.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1"
},
"scripts": {
"test": "jest && yarn lint",
"test:watch": "jest --watch",
"precommit": "lint-staged",
"lint": "eslint **/*.js"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"engines": {
"node": ">=8.9.0"
},
"main": "index.js"
}