-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.17 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
{
"name": "slack-message",
"version": "1.2.0",
"description": "Send slack messages from terminal",
"main": "index.js",
"bin": {
"slack-message": "bin/slack-message"
},
"scripts": {
"test": "ava --verbose",
"lint": "xo",
"validate": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twobucks/slack-message.git"
},
"files": [
"index.js",
"lib",
"bin"
],
"keywords": [
"slack",
"node"
],
"engines": {
"node": ">=5"
},
"author": "Dino Trojak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/twobucks/slack-message/issues"
},
"homepage": "https://github.com/twobucks/slack-message#readme",
"dependencies": {
"cli-spinner": "^0.2.5",
"commander": "^2.9.0",
"home-dir": "^1.0.0",
"npmlog": "^4.0.0",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"validate.js": "^0.10.0"
},
"devDependencies": {
"ava": "^0.16.0",
"np": "^2.9.0",
"pre-commit": "^1.1.3",
"xo": "^0.17.0"
},
"xo": {
"semicolon": false,
"esnext": true,
"space": true
},
"pre-commit": [
"validate"
]
}