-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 915 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
{
"name": "penny",
"version": "0.0.1",
"description": "Slackbot to encourage drawing.",
"main": "src/index.js",
"scripts": {
"start": "nodemon -e js src/index.js",
"precommit": "lint-staged",
"add-contributor": "all-contributors add",
"generate": "all-contributors generate"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-heap/penny.git"
},
"author": "Tyler Sloane",
"license": "ISC",
"bugs": {
"url": "https://github.com/the-heap/penny/issues"
},
"homepage": "https://github.com/the-heap/penny#readme",
"dependencies": {
"@slack/client": "^3.10.0",
"cron": "^1.2.1"
},
"devDependencies": {
"all-contributors-cli": "^4.3.0",
"husky": "^0.14.2",
"lint-staged": "^4.0.0",
"nodemon": "^1.11.0",
"prettier": "^1.5.2"
}
}