-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 941 Bytes
/
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
{
"name": "@kazoohr/typeorm-pagination",
"repository": "github:KazooHR/typeorm-pagination",
"private": true,
"version": "1.0.0-alpha",
"engines": {
"node": ">=14.0.0"
},
"main": "build/index.js",
"author": "WorkTango <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"clean": "rm -rf build",
"test": "jest --coverage",
"develop": "yarn && yarn test --watch a"
},
"peerDependencies": {
"typeorm": "^0.2.32"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"sqlite3": "^5.0.2",
"typeorm": "^0.2.32",
"typeorm-naming-strategies": "^2.0.0",
"typescript": "^4.2.4"
}
}