-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
103 lines (103 loc) · 3.01 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
{
"name": "typeorm-fixtures-cli",
"version": "4.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"fixtures": "dist/cli.js",
"fixtures-ts-node-commonjs": "dist/cli-ts-node-commonjs.js",
"fixtures-ts-node-esm": "dist/cli-ts-node-esm.js"
},
"scripts": {
"postinstall": "(opencollective-postinstall || exit 0) && (husky install || exit 0)",
"build": "npm run clean && tsc -p tsconfig.json",
"prepare": "npm run build",
"clean": "trash dist",
"lint:fix": "prettier src/**/*.ts --write && eslint --fix .",
"lint": "eslint . && prettier src/**/*.ts --list-different",
"test": "nyc mocha \"test/**/*.ts\"",
"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": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@duncte123/jsonlint": "^1.6.3",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/cli-progress": "^3.8.0",
"@types/ejs": "^3.0.5",
"@types/glob": "^7.2.0",
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.166",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.27.1",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.17.0",
"graphology-types": "^0.24.7",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.0.0",
"trash-cli": "^5.0.0",
"ts-node": "^10.7.0",
"typeorm": "^0.3.0",
"typescript": "^4.6.2",
"yaml-lint": "^1.2.4"
},
"dependencies": {
"@faker-js/faker": ">=7.4.0",
"chai": "^4.2.0",
"chalk": "^4.0.0",
"class-transformer": "^0.5.0",
"cli-progress": "^3.10.0",
"ejs": "^3.1.5",
"glob": "^8.0.1",
"graphology": "^0.25.4",
"graphology-dag": "^0.3.0",
"joi": "^17.0.0",
"js-yaml": "^4.0.0",
"lodash": "^4.0.0",
"opencollective-postinstall": "^2.0.3",
"reflect-metadata": "^0.1.13",
"resolve-from": "^5.0.0",
"typescript-collections": "^1.3.3",
"yargs": "^17.5.1"
},
"peerDependencies": {
"typeorm": "^0.3.0"
},
"collective": {
"url": "https://opencollective.com/typeorm-fixtures"
}
}