-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "postgrest-js-tools",
"description": "Tiny tools library for @supabase/postgrest-js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"test": "jest --watchAll=true",
"build": "tsc"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mzalevski/postgrest-js-tools.git"
},
"keywords": [
"supabase",
"postgrest",
"tools"
],
"author": "mzalevski",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^28.1.4",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"tsd": "^0.22.0",
"typescript": "^4.7.4"
},
"bugs": {
"url": "https://github.com/mzalevski/postgrest-js-tools/issues"
},
"homepage": "https://github.com/mzalevski/postgrest-js-tools#readme",
"lint-staged": {
"*.{js,ts}": [
"yarn prettier --write"
]
}
}