-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
{
"name": "sonosbot",
"version": "0.3.1",
"description": "Control Sonos/Spotify through Slack.",
"main": "index.js",
"repository": "https://github.com/benwiggins/sonosbot",
"author": "Ben Wiggins",
"license": "MIT",
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src",
"prettier": "prettier --write '**/*.js'",
"start": "DEBUG=sonosbot:* node index.js",
"test-coverage": "nyc yarn test",
"test": "NODE_ENV=${NODE_ENV:=test} DEBUG=${DEBUG:=} jest --verbose"
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"eslint": "8.7.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"husky": "5.1.3",
"jest": "26.6.3",
"lint-staged": "12.3.1",
"nock": "12.0.3",
"nyc": "15.0.1",
"prettier": "2.5.1"
},
"dependencies": {
"@slack/client": "5.0.2",
"debug": "4.3.1",
"form-data": "3.0.0",
"got": "10.7.0",
"lodash": "4.17.21",
"node-cache": "5.1.0",
"sonos": "1.14.1",
"supports-color": "7.1.0"
},
"engines": {
"node": ">=12.0.0"
}
}