This repository was archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.41 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.41 KB
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
{
"name": "@genially/typeorm-mimic",
"description": "typeorm-mimic is a small (but powerful) Node.js library to generate test data using only the TypeORM schema",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage"
},
"author": "Genially (https://www.genial.ly)",
"repository": {
"type": "git",
"url": "git+https://github.com/Genially/typeorm-mimic.git"
},
"bugs": {
"url": "https://github.com/Genially/typeorm-mimic/issues"
},
"keywords": [
"mimic",
"test",
"generate",
"generator",
"fake",
"dummy",
"mock",
"data",
"faker",
"typeorm",
"sql",
"document",
"seeding",
"schema"
],
"homepage": "https://www.genial.ly",
"license": "MIT",
"dependencies": {
"faker": "4.1.0",
"flat": "4.1.0",
"typeorm": "0.2.18",
"uuid": "3.3.3"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@semantic-release/git": "7.0.16",
"husky": "3.0.5",
"jest": "24.9.0",
"jest-extended": "0.11.2",
"semantic-release": "15.13.24"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
],
"testEnvironment": "node"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}