-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1005 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
44
45
46
{
"name": "slack-incoming-trello",
"version": "1.0.0",
"description": "Slack Incoming WebHook for Trello",
"keywords": [
"slack",
"trello"
],
"license": "MIT",
"homepage": "https://github.com/simov/slack-incoming-trello",
"author": "Simeon Velichkov <[email protected]> (https://simov.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/simov/slack-incoming-trello.git"
},
"dependencies": {
"@request/client": "^0.1.0",
"minimist": "^1.2.0",
"purest": "^3.1.0"
},
"devDependencies": {
"@request/log": "^0.1.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
},
"bin": {
"slack-incoming-trello": "./bin/index.js"
},
"main": "./lib/",
"files": [
"bin/",
"config/",
"lib/",
"LICENSE",
"README.md"
],
"scripts": {
"test": "npm run test-ci",
"test-ci": "mocha test/",
"test-cov": "istanbul cover _mocha"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
}
}