-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 996 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
{
"author": "k4itrun",
"name": "node-replit-uptimer",
"version": "2.0.0-renewed",
"description": "Don't let your replit go offline, Create a http server with just one line of code and keep pinging to keep your project online!",
"main": "src/index.js",
"module": "src/index.js",
"files": [ "src/index.js" ],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format:check": "prettier --check .",
"format": "prettier --write . --ignore-unknown",
"lint": "eslint . --ext .js,.ts"
},
"homepage": "https://github.com/k4itrun/node-replit-uptimer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/k4itrun/node-replit-uptimer.git"
},
"bugs": {
"url": "https://github.com/k4itrun/node-replit-uptimer/issues"
},
"devDependencies": {
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"prettier": "2.8.3"
},
"packageManager": "pnpm@7.26.3",
"dependencies": {
"colors": "^1.4.0"
}
}