-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.7 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
58
59
60
{
"name": "@igorkowalczyk/repl-uptime",
"description": "🤙 Don't let your repl go to sleep! Create a http server with just few lines of code and keep pinging it!",
"version": "1.6.0",
"author": "Igor Kowalczyk",
"license": "MIT",
"repository": "IgorKowalczyk/repl-uptime",
"funding": "https://github.com/sponsors/igorkowalczyk",
"bugs": "https://github.com/igorkowalczyk/repl-uptime/issues",
"homepage": "https://github.com/IgorKowalczyk/repl-uptime#readme",
"type": "module",
"types": "./dist/types/index.d.ts",
"exports": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.cjs"
},
"scripts": {
"build": "rollup -c",
"format:check": "prettier . --check --cache",
"format": "prettier . --write --ignore-unknown --cache",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"devDependencies": {
"@igorkowalczyk/eslint-config": "3.0.0-beta.16",
"@igorkowalczyk/prettier-config": "3.0.0-beta.16",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-typescript": "12.1.2",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"eslint": "9.17.0",
"eslint-plugin-jest": "28.10.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"rollup": "4.30.0",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-uglify": "6.0.4",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
},
"files": [
"dist"
],
"keywords": [
"replit",
"repl",
"uptime",
"ping",
"http",
"api",
"server",
"uptime"
],
"packageManager": "[email protected]"
}