-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.37 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.37 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pheidi",
"version": "1.39.0",
"description": "Runnable notifications worker server",
"main": "index.js",
"scripts": {
"lint": "standard --verbose",
"check-coverage": "istanbul check-coverage --statement 86 --branches 77 --functions 72 --lines 86 && echo 'Coverage check successful!'",
"coverage": "NODE_ENV=test NODE_PATH=./lib istanbul cover ./node_modules/mocha/bin/_mocha -- $npm_package_options_mocha test/ && npm run check-coverage",
"codeclimate": "npm install -g codeclimate-test-reporter && codeclimate-test-reporter < ./coverage/lcov.info",
"start": "NODE_PATH=./lib node index.js",
"unit": "NODE_ENV=test NODE_PATH=./lib mocha $npm_package_options_mocha test/unit",
"unit-no-bail": "NODE_ENV=test NODE_PATH=./lib mocha --timeout 5000 --recursive --reporter spec test/unit",
"test": "npm run lint && npm run coverage"
},
"keywords": [
"ponos",
"notifications"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CodeNow/pheidi.git"
},
"bugs": {
"url": "https://github.com/CodeNow/pheidi/issues"
},
"homepage": "https://github.com/CodeNow/pheidi#readme",
"options": {
"mocha": "--timeout 5000 --bail --recursive --reporter spec"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"author": "Anton Podviaznikov <anton@runnable.com> (http://runnable.com)",
"license": "UNLICENSED",
"dependencies": {
"101": "^1.5.0",
"@runnable/big-poppa-client": "^0.4.0",
"@runnable/hostname": "^3.0.0",
"@runnable/orion": "^1.4.1",
"async": "^1.5.2",
"bluebird": "^3.3.4",
"bunyan": "^1.8.1",
"continuation-local-storage": "^3.1.7",
"deep-equal": "^1.0.1",
"defaults": "^1.0.3",
"error-cat": "^3.0.0",
"github4": "1.1.0",
"joi": "^9.0.4",
"keypather": "^2.0.0",
"loadenv": "^2.1.0",
"lru-cache": "^4.0.1",
"mongodb": "2.1.17",
"monitor-dog": "^1.5.0",
"ponos": "^5.6.1",
"sendgrid": "^4.1.0",
"slack-client": "~1.4.0",
"underscore.string": "^3.3.4"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.0",
"standard": "^6.0.8"
},
"engine": {
"node": "4.2.2",
"npm": "2.14.7"
}
}