-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 773 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 773 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
{
"name": "popn",
"version": "0.9.7",
"description": "A Node.js application that allows the user to look up when the next planned power outage of their locality will occur.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wazeerc/popn.git"
},
"author": "WazeerC",
"license": "MIT",
"bugs": {
"url": "https://github.com/wazeerc/popn/issues"
},
"homepage": "https://github.com/wazeerc/popn#readme",
"dependencies": {
"express": "^4.18.2",
"node-fetch": "^2.6.8"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-google": "^0.14.0"
}
}