-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.38 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
{
"name": "thegambler",
"version": "1.0.20",
"description": "The Gambler aims to provide a tool for efficiently and accurately handling exceptions in a RESTful application.",
"main": "lib/index.js",
"scripts": {
"transpile": "npx -y tsc",
"test": "jest --verbose --detectOpenHandles --forceExit",
"lint:js": "eslint --ext .js --fix lib",
"worker": "ts-node src/worker.ts",
"lint": "eslint --ext .ts src",
"prepare:publish": "npm run transpile && npm run worker && npm run lint:js"
},
"files": [
"lib",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marciodanielll/thegambler.git"
},
"keywords": ["exceptions", "error handling", "RESTful"],
"author": {
"name": "Márcio Daniel",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/marciodanielll/thegambler/issues"
},
"homepage": "https://github.com/marciodanielll/thegambler#readme",
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "15.0.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-sonarjs": "0.10.0",
"ts-jest": "^27.0.7",
"typescript": "4.4"
}
}