This repository has been archived by the owner on Mar 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.84 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
{
"name": "postgrester",
"version": "1.6.0",
"license": "Apache-2.0",
"description": "PostgREST API Client.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">= 10"
},
"scripts": {
"build": "rm -Rf ./dist && rollup -c",
"prepare": "husky install",
"setup": "node ./scripts/dev/setup.js",
"test": "yarn test:lint && yarn test:unit",
"test:e2e": "yarn build && jest -c ./jest.e2e.config.js --runInBand",
"test:e2e:v8": "cross-env POSTGREST_VERSION=v8.0.0.20211102 yarn setup && yarn test:e2e",
"test:e2e:v9": "yarn setup && yarn test:e2e",
"test:lint": "eslint .",
"test:unit": "jest",
"test:watch": "yarn test:unit --watch"
},
"dependencies": {
"axios": "0.27.2"
},
"devDependencies": {
"@ivangabriele/eslint-config-typescript-base": "2.1.4",
"@ivangabriele/prettier-config": "3.0.2",
"@ivangabriele/semantic-release-config-base": "2.0.2",
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.3.2",
"@types/jest": "27.5.1",
"bhala": "2.1.0",
"codecov": "3.8.3",
"cross-env": "7.0.3",
"eslint-plugin-jest": "26.2.2",
"husky": "8.0.1",
"jest": "27.5.1",
"knex": "2.0.0",
"pg": "8.7.3",
"rollup": "2.74.1",
"shelljs": "0.8.5",
"ts-jest": "27.1.5",
"typescript": "4.6.4"
},
"prettier": "@ivangabriele/prettier-config",
"release": {
"extends": "@ivangabriele/semantic-release-config-base"
},
"keywords": [
"api",
"client",
"postgres",
"postgresql",
"postgrest"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ivangabriele/postgrester.git"
},
"bugs": {
"url": "https://github.com/ivangabriele/postgrester/issues"
},
"homepage": "https://github.com/ivangabriele/postgrester#readme"
}