-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
63 lines (63 loc) · 1.64 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
60
61
62
63
{
"name": "norrisbot",
"version": "2.0.5",
"description": "A Slack bot that kicks asses (roundhouse-kicks to be accurate...)",
"keywords": [
"Slack",
"bot",
"Chuck Norris",
"jokes",
"fun",
"humor"
],
"repository": {
"type": "git",
"url": "https://github.com/lmammino/norrisbot"
},
"bugs": {
"url": "https://github.com/lmammino/norrisbot/issues"
},
"main": "lib/norrisbot.js",
"bin": {
"norrisbot": "lib/norrisbot-cli.js"
},
"scripts": {
"build": "./build.sh",
"start": "lib/norrisbot-cli.js",
"lint": "eslint src tests",
"test:unit": "jest tests/* --coverage --verbose",
"test": "npm run lint && npm run test:unit",
"release:tag": "git tag $npm_package_version && git push --tags",
"package:create": "pkg . -t node7-win,node7-macos,node7-linux --out-dir build",
"package:publish": "node publish-release $GITHUB_TOKEN lmammino/norrisbot $npm_package_version"
},
"author": {
"name": "Luciano Mammino",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=0.12.0"
},
"dependencies": {
"@slack/client": "^3.9.0",
"chalk": "^1.1.3",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"codecov": "^2.1.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2",
"pkg": "^3.0.0",
"request-promise": "^4.2.0",
"rimraf": "^2.6.1"
}
}