-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
105 lines (105 loc) · 2.63 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "mockingbird-monorepo",
"private": true,
"version": "0.0.0",
"license": "MIT",
"description": "Mockingbird Monorepo",
"keywords": [
"faker",
"faker-typescript",
"typescript-faker",
"typescript-mocks",
"faker-unit-tests",
"mockingbird-ts",
"mockingbird",
"unit-test",
"unit-test-mocks",
"testing-mocks",
"testing"
],
"contributors": [
{
"name": "Omer Morad",
"email": "omer.moradd@gmail.com"
},
{
"name": "Idan Ptichi",
"email": "idanpt@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/omermorad/mockingbird.git"
},
"bugs": {
"url": "https://github.com/omermorad/mockingbird/issues"
},
"readme": "https://github.com/omermorad/mockingbird/README.md",
"scripts": {
"prepare": "husky install",
"build": "lerna run build --stream",
"watch": "lerna exec -- watch",
"test": "jest --runInBand && yarn test:sample",
"test:sample": "export NODE_ENV=test && cd sample/mockingbird-typeorm && yarn test",
"test:cov": "jest --coverage --runInBand --reporters=jest-junit",
"lint": "lerna run lint --since HEAD"
},
"files": [
"dist",
"index.d.ts",
"index.js",
"README.md"
],
"dependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/config-lerna-scopes": "^12.1.4",
"@manypkg/cli": "^0.19.1",
"@types/faker": "^5.5.7",
"@types/jest": "26.0.24",
"@types/node": "^12.20.15",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^3.6.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-prettier": "^3.1.3",
"faker": "^5.5.3",
"husky": "^7.0.1",
"jest": "27.0.6",
"jest-gherkin": "^0.0.0",
"jest-junit": "12.2.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"ts-loader": "^6.2.2",
"ts-node": "8.10.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.9.7"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": [
"eslint --ext .ts --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": [
"packages/*"
]
}