forked from jeanfortheweb/typeorm-fixture-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.03 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "typeorm-fixture-builder",
"description": "Painless and type safe data fixtures for typeorm",
"version": "2.2.3",
"license": "MIT",
"repository": "github:jeanfortheweb/typeorm-fixture-builder",
"author": {
"name": "Jean-Pascal 'Johnny' Hövel",
"email": "[email protected]"
},
"publishConfig": {
"tag": "latest"
},
"keywords": [
"typeorm",
"typescript",
"cli",
"fixtures"
],
"files": [
"lib",
"bin"
],
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"bin": {
"fixtures": "./bin/cli.js"
},
"scripts": {
"compile:cjs": "rm -rf lib/cjs && tsc --p tsconfig.cjs.json",
"compile:esm": "rm -rf lib/esm && tsc --p tsconfig.esm.json",
"compile:test": "rm -rf lib/cjs && tsc --p tsconfig.test.json",
"prepare": "husky install"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/entities/",
"/scenarios/",
"/*.js/"
],
"coveragePathIgnorePatterns": [
"/lib/",
"/__tests__/"
]
},
"dependencies": {
"cli-spinners": "^2.6.0",
"commander": "^8.0.0",
"glob": "^7.1.7",
"ink": "^3.0.8",
"react": "^17.0.2",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1"
},
"peerDependencies": {
"typeorm": "^0.2.32",
"typescript": "^4.2.3"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/glob": "^7.1.4",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"commitlint": "^12.1.4",
"conventional-changelog-eslint": "^3.0.9",
"eslint": "^7.31.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4",
"sqlite3": "^5.0.2",
"ts-jest": "^27.0.3",
"typeorm": "^0.2.34",
"typescript": "^4.3.5"
}
}