forked from gnarf/node-notifier-server
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 940 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 940 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
26
27
28
29
30
31
32
33
34
35
36
37
{
"private": true,
"license": "MIT",
"author": "Corey Frang <gnarf37@gmail.com>",
"contributors": [
"Scott González <scott.gonzalez@gmail.com> (http://scottgonzalez.com)",
"Timo Tijhof (https://timotijhof.net)"
],
"main": "notifier-server.js",
"bin": {
"notifier-server": "./bin/notifier-server"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "npm run -s test-unit && npm run -s test-lint",
"test-unit": "qunit",
"test-lint": "eslint .",
"fix-lint": "eslint --fix ."
},
"dependencies": {
"commander": "7.2.0",
"eventemitter2": "0.4.14"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"kleur": "^4.1.4",
"qunit": "^2.20.0",
"rimraf": "3.0.2"
}
}