-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "tuple-it",
"version": "1.1.0",
"description": "A simple Promise to [error, data] catcher.",
"keywords": [
"tuple",
"it",
"await",
"to",
"js",
"error",
"typescript",
"promise",
"async"
],
"homepage": "https://github.com/arthurfiorette/tuple-it#readme",
"bugs": {
"url": "https://github.com/arthurfiorette/tuple-it/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthurfiorette/tuple-it.git"
},
"license": "MIT",
"author": "Arthur Fiorette <[email protected]>",
"sideEffects": ["register.js"],
"type": "commonjs",
"main": "index.js",
"types": "index.d.ts",
"files": ["index.js", "index.d.ts", "register.d.ts", "register.js"],
"scripts": {
"format": "biome format --write .",
"lint": "biome check .",
"lint:ci": "biome ci .",
"lint:fix": "biome check --apply-unsafe .",
"test": "c8 --reporter lcov --reporter text node --test test/**/*.test.js && tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@types/node": "^22.0.0",
"c8": "^9.1.0",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14"
}
}