forked from Tool-Kid/express-query-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "typeorm-express-query-builder",
"version": "1.6.0",
"description": "Easily transform an Express req.query into TypeORM query",
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"build:watch": "tsc -p . --watch",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"codecov": "codecov",
"lint": "eslint src/** --fix",
"prepare": "tsc -p . && cp -r ./dist/* . && rm -rf ./dist",
"prepack": "tsc -p . && cp -r ./dist/* . && rm -rf ./dist"
},
"keywords": [
"typeorm",
"express",
"query string",
"query",
"builder",
"nestjs",
"nest"
],
"files": [
"**/*.js",
"**/*.d.ts",
"*.d.ts"
],
"author": "rjlopezdev",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^17.0.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"express": "^4.17.1",
"jest": "^27.2.1",
"pg": "^8.7.1",
"prettier": "^2.4.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"typeorm": "^0.3.7",
"typescript": "^4.4.3"
},
"dependencies": {},
"peerDependencies": {
"typeorm": "^0.3.7"
}
}