-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "fire-and-forgetter",
"version": "3.2.1",
"description": "A simple lib to handle fire and forget operations.",
"main": "build/index.js",
"scripts": {
"test": "node --require ts-node/register --test --watch test/*.spec.ts",
"test-ci": "c8 node --require ts-node/register --test test/*.spec.ts",
"build": "tsc -p tsconfig.json",
"build-watch": "tsc -p tsconfig.json --watch",
"format": "prettier --check **/*.ts",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/francescorivola/fire-and-forgetter.git"
},
"keywords": [
"fire-and-forget",
"lib"
],
"engines": {
"node": ">=18"
},
"author": "francescorivola",
"license": "MIT",
"homepage": "https://github.com/francescorivola/fire-and-forgetter#readme",
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.9.1",
"c8": "^10.0.0",
"eslint": "^8.53.0",
"prettier": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}