-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 971 Bytes
/
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
{
"name": "@mhkeller/notify",
"version": "1.0.0",
"description": "Simple, colorful console notifications.",
"type": "module",
"main": "src/index.js",
"exports": "./src/index.js",
"scripts": {
"test": "mocha"
},
"author": "Michael Keller",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"clean-stack": "^5.1.0",
"node-notifier": "^10.0.1"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"prettier": "^2.8.5",
"sinon": "^15.0.2",
"strip-ansi": "^7.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhkeller/notify.git"
},
"bugs": {
"url": "https://github.com/mhkeller/notify/issues"
},
"homepage": "https://github.com/mhkeller/notify#readme"
}