forked from mdibaiee/slackbot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.7 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": "slackbot-api",
"description": "Simple, consistent and customizable Slack bot API",
"version": "1.13.2",
"main": "build/index.js",
"scripts": {
"lint": "eslint src test",
"test": "mocha test --compilers js:babel/register,js:babel/polyfill -w",
"test:single": "istanbul cover -x test _mocha -- test --compilers js:babel/register,js:babel/polyfill",
"test:file": "mocha --compilers js:babel/register,js:babel/polyfill",
"check-coverage": "istanbul check-coverage --statements 90 --branches 85 --functions 90 --lines 90",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/mdibaiee/slackbot-api"
},
"keywords": [],
"author": "Mahdi Dibaiee",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdibaiee/slackbot-api/issues"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && grunt && npm run test:single && npm run check-coverage"
}
},
"files": [
"build"
],
"directories": {
"lib": "src"
},
"engines": {
"node": ">=0.12.0"
},
"homepage": "https://github.com/mdibaiee/slackbot-api",
"dependencies": {
"babel": "5.8.3",
"bluebird": "2.10.2",
"fold-to-ascii": "2.0.2",
"grunt-babel": "5.0.3",
"lodash": "4.6.1",
"unirest": "0.4.2",
"ws": "0.8.0"
},
"devDependencies": {
"babel": "5.8.3",
"chai": "^3.3.0",
"codecov.io": "^0.1.6",
"eslint": "2.10.2",
"eslint-config-pichak": "1.0.0",
"express": "4.13.3",
"ghooks": "^0.3.2",
"grunt": "0.4.5",
"grunt-babel": "6.0.0",
"grunt-contrib-watch": "0.6.1",
"istanbul": "^0.3.22",
"mocha": "^2.3.3",
"sinon": "1.17.2"
}
}