-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 925 Bytes
/
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
{
"name": "typeorm-fixtures-sample",
"version": "1.0.0",
"description": "Sample project for typeorm-fixtures-cli",
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json",
"clean": "trash dist",
"fixtures": "fixtures ./fixtures --config ormconfig.yml --sync",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinCK/typeorm-fixtures-sample.git"
},
"author": "igor Ognichenko <ognichenko.igor@gmail.com>",
"private": true,
"bugs": {
"url": "https://github.com/RobinCK/typeorm-fixtures-sample/issues"
},
"homepage": "https://github.com/RobinCK/typeorm-fixtures-sample#readme",
"dependencies": {
"@types/node": "13.13.2",
"pg": "^8.2.1",
"typeorm": "^0.2.25",
"typeorm-fixtures-cli": "^1.6.0"
},
"devDependencies": {
"trash-cli": "^3.0.0",
"typescript": "^3.2.2"
}
}