-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.9 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "tryumph",
"version": "0.0.0-semantic-release",
"description": "Bring the \"Umph\" to the javascript's async error handling",
"files": ["dist"],
"types": "./dist/tryumph.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/tryumph.d.ts",
"default": "./dist/tryumph.esm.mjs"
},
"require": {
"types": "./dist/tryumph.d.ts",
"default": "./dist/tryumph.common.js"
}
}
},
"scripts": {
"prepare": "npm run clean && npm run build",
"clean": "ts-node ./scripts/clean.ts",
"lint": "eslint .",
"test": "jest",
"test-cov": "npm run test -- --coverage",
"test-coveralls": "npm run test-cov && node ./scripts/coveralls.mjs",
"build": "rollup -c ./rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rzvxa/tryumph.git"
},
"keywords": [
"try",
"async",
"errorHandling",
"dontThrow",
"fault tolerant",
"production",
"node.js",
"typescript",
"strong",
"rust",
"rust like",
"rust error handling",
"go",
"go like",
"go error handling",
"tryumph"
],
"author": "rzvxa",
"license": "MIT",
"bugs": {
"url": "https://github.com/rzvxa/tryumph/issues"
},
"homepage": "https://rzvxa.github.io/tryumph/",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"coveralls": "^3.1.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"rollup": "^4.9.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
},
"engines": {
"node": "^16.20.2"
},
"engineStrict": true,
"dependencies": {
"dwait": "^1.1.3"
}
}