forked from RobinCK/typeorm-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.8 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
{
"name": "typeorm-fixtures-cli",
"version": "1.6.0",
"description": "",
"main": "dist/index.js",
"bin": {
"fixtures": "dist/cli.js"
},
"scripts": {
"postinstall": "opencollective-postinstall",
"build": "npm run clean && tsc -p tsconfig.json",
"clean": "trash dist",
"lint:fix": "prettier src/**/*.ts --write && tslint --fix --project .",
"lint": "tslint --project . && prettier src/**/*.ts --list-different",
"test": "nyc mocha",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"commit": "npx git-cz"
},
"keywords": [
"typeorm",
"fixtures",
"orm",
"cli",
"typescript",
"faker",
"fixture-loader",
"typeorm-fixtures"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RobinCK/typeorm-fixtures.git"
},
"author": "Igor Ognichenko <[email protected]>",
"bugs": {
"url": "https://github.com/RobinCK/typeorm-fixtures/issues"
},
"homepage": "https://github.com/RobinCK/typeorm-fixtures#readme",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/chalk": "^2.2.0",
"@types/cli-progress": "^3.7.0",
"@types/commander": "^2.12.2",
"@types/ejs": "^3.0.4",
"@types/faker": "^4.1.11",
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.3",
"@types/lodash": "^4.14.150",
"@types/mocha": "^7.0.2",
"@types/resolve-from": "^5.0.0",
"@types/yargs-parser": "^15.0.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.0.21",
"coveralls": "^3.0.4",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"jsonlint": "^1.6.3",
"lint-staged": "^10.2.6",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"trash-cli": "^3.0.0",
"ts-node": "^8.3.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-immutable": "^6.0.1",
"typeorm": "^0.2.18",
"typescript": "^3.5.3",
"yaml-lint": "^1.2.4"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/hapi__joi": "^17.1.0",
"chai": "^4.2.0",
"chalk": "^4.0.0",
"class-transformer": "^0.2.3",
"cli-progress": "^3.0.0",
"commander": "^5.1.0",
"ejs": "^3.1.3",
"faker": "^4.1.0",
"glob": "^7.1.6",
"js-yaml": "3.14.0",
"lodash": "^4.17.14",
"opencollective-postinstall": "^2.0.2",
"reflect-metadata": "^0.1.13",
"resolve-from": "^5.0.0",
"yargs-parser": "^18.1.3"
},
"peerDependencies": {
"typeorm": "^0.2.11"
},
"collective": {
"url": "https://opencollective.com/typeorm-fixtures"
}
}