-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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
50
51
52
53
54
55
56
57
{
"name": "is-epfl-down",
"version": "7.0.2",
"description": "Check if EPFL is down",
"keywords": [
"EPFL",
"down",
"check",
"up",
"status"
],
"author": "William Belle <[email protected]>",
"contributors": [
"Olivier Bieler <[email protected]>",
"Nicolas Borboën <[email protected]>"
],
"license": "Apache-2.0",
"repository": "innovativeinnovation/is-epfl-down",
"engines": {
"node": ">=14"
},
"main": "src/index.js",
"bin": "src/cli.js",
"files": [
"src/subdomain.json",
"src/icon.png",
"src/cli.js",
"src/alarm.wav"
],
"scripts": {
"test": "eslint . && mocha",
"coverage": "nyc -x src/cli.js -x test/ mocha",
"coveralls": "npm run coverage && nyc report --reporter=lcov"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"rewire": "^6.0.0"
},
"dependencies": {
"got": "^11.8.3",
"jsonfile": "^6.1.0",
"log-symbols": "^4.1.0",
"node-notifier": "^10.0.1",
"play-sound": "^1.1.5",
"yargs": "^17.7.2"
}
}