-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "supabase-errors",
"version": "0.2.0",
"description": "Maps Supabase errors to unique error codes based on their error message.",
"keywords": [
"supabase",
"gotrue",
"javascript",
"typescript"
],
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"prepublish": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "mocha 'test/**/*.ts'"
},
"repository": "https://github.com/joeldomke/supabase-errors-js",
"author": "Joel Domke <joeldomke@aol.de>",
"license": "MIT",
"private": false,
"files": [
"lib/src/**/*"
],
"dependencies": {
"@supabase/gotrue-js": "^2.37.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.15",
"@types/sinon-chai": "^3.2.9",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.1.3"
}
}