-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 747 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 747 Bytes
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
{
"name": "error2slack",
"version": "1.0.0",
"description": "Push any uncaught errors to a slack channel",
"main": "index.js",
"scripts": {
"test": "mocha tests/*.js",
"travis": "istanbul cover ./node_modules/mocha/bin/_mocha ./tests/lib.test.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"author": "Danwakeem",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.10",
"request": "^2.87.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"coveralls": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"proxyquire": "^2.0.1",
"should": "^13.2.1"
}
}