-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 981 Bytes
/
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
{
"name": "last-slack",
"version": "1.0.0",
"description": "Script to send your last playing track on Last.fm to a Slack WebHook",
"repository": {
"type": "git",
"url": "git+https://github.com/jeromelachaud/last-slack.git"
},
"private": true,
"main": "index.js",
"scripts": {
"app": "node index.js",
"app:dev": "NODE_ENV=development node index.js",
"lint": "eslint ."
},
"keywords": [
"last.fm",
"slack"
],
"author": "Jerome Lachaud",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^15.0.1",
"axios": "^1.7.3",
"chalk": "^2.4.2",
"commander": "^12.1.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"eslint": "^5.15.2",
"eslint-plugin-promise": "^4.3.1"
},
"engines": {
"node": "8.11.3"
},
"bugs": {
"url": "https://github.com/jeromelachaud/last-slack/issues"
},
"homepage": "https://github.com/jeromelachaud/last-slack#readme",
"directories": {
"lib": "lib"
}
}