-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "wsk-notify",
"version": "1.0.1",
"description": "Simple, customizable console notifications.",
"bin": {
"wsk-notify": "bin/wsk-notify"
},
"main": "src/index.js",
"scripts": {
"test": "nyc ava tests/test-*.js --timeout=5s -s -v",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Michael Keller",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^1.1.3",
"clean-stack": "^1.3.0",
"node-notifier": "^5.1.2",
"underscore": "^1.8.3"
},
"nyc": {
"exclude": [
"**/*tests/**/*"
]
},
"devDependencies": {
"ava": "^0.23.0",
"coveralls": "^3.0.0",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"execa": "^0.8.0",
"nyc": "^11.2.1",
"semistandard": "^11.0.0",
"sinon": "^4.0.1",
"strip-ansi": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bloomberg/wsk-notify.git"
},
"bugs": {
"url": "https://github.com/bloomberg/wsk-notify/issues"
},
"homepage": "https://github.com/bloomberg/wsk-notify#readme"
}