-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"name": "typeorm-fixture",
"version": "0.3.6",
"description": "Painless TypeORM fixtures",
"keywords": [
"typeorm",
"fixture",
"test",
"testing",
"database"
],
"main": "dist/index.js",
"author": "jungnoh",
"license": "MIT",
"scripts": {
"lint": "eslint --fix src",
"build": "rm -rf dist && tsc",
"pretest": "yarn build",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"glob": "^7.1.7",
"reflect-metadata": "^0.1.13",
"typescript": "^4.4.2"
},
"peerDependencies": {
"typeorm": "^0.2.37"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.1",
"jest-extended": "^2.0.0",
"pg": "^8.7.1",
"prettier": "^2.4.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typeorm": "^0.2.37"
},
"files": [
"dist/**/*.d.ts",
"dist/**/*.js"
]
}