-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "typeorm-factories",
"version": "1.0.1",
"description": "Factories for your TypeORM Entities",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "yarn run coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watch",
"build": "rm -rf ./dist && tsc && npm run build:index",
"build:index": "rm -rf ./index.js ./index.d.ts && tsc -d --skipLibCheck ./index.ts",
"format": "prettier **/*.ts --ignore-path ./.prettierignore --write && git status",
"prepublish": "npm run format && npm run build"
},
"keywords": [
"typeorm",
"factories",
"typeorm faker",
"nestjs factories",
"nestjs"
],
"repository": {
"type": "git",
"url": "https://github.com/owl1n/typeorm-factories"
},
"author": {
"name": "Markin Maxim",
"email": "[email protected]"
},
"license": "MIT",
"peerDependencies": {
"@nestjs/common": "^6.1.1",
"typeorm": "^0.2.18",
"faker": "^4.1.0",
"@types/faker": "^4.1.5",
"@types/node": "^12.0.10",
"rxjs": "^6.5.2"
},
"devDependencies": {
"@nestjs/common": "^6.1.1",
"typeorm": "^0.2.18",
"faker": "^4.1.0",
"@types/faker": "^4.1.5",
"@types/node": "^12.0.10",
"typescript": "3.4.4",
"ts-jest": "^24.0.2",
"jest": "^24.8.0",
"coveralls": "^3.0.4",
"prettier": "^1.18.2",
"rxjs": "^6.5.2"
}
}