-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "sunbear",
"version": "0.2.0",
"description": "Authorization library for SQL",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build-ts": "./node_modules/.bin/tsc",
"build": "npm run build-ts",
"clean": "rm -r ./dist || true",
"lint": "eslint --ext .ts --max-warnings 0 --fix src examples",
"test": "jest --runInBand",
"prepack": "npm run clean && npm run lint && npm run build && find ./dist -name '*.map' -delete"
},
"engines": {
"node": ">=12"
},
"author": "InScreen, Inc.",
"repository": "https://github.com/inscreen/sunbear",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^18.11.18",
"@types/pg-format": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/pg": "^8.6.5",
"pg-format": "^1.0.4",
"typeorm": "^0.3.11"
}
}