forked from linnify/typeorm-factory
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "@danielsoheil/typeorm-better-factory",
"version": "1.3.2",
"description": "Factory for typeorm",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"lint": "eslint .",
"lint:quiet": "eslint . --quiet",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"format:check": "prettier --write \"src/**/*.{ts,js}\"",
"check": "tsc --noEmit",
"prepublish": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"ci": "npm run format:check && npm run lint:quiet && npm run check"
},
"author": "Bogdan Darius",
"repository": {
"type": "git",
"url": "git+https://github.com/danielsoheil/typeorm-better-factory.git"
},
"keywords": [
"typeorm",
"factory",
"testing",
"typescript",
"factories",
"tests"
],
"homepage": "https://github.com/danielsoheil/typeorm-better-factory#readme",
"license": "ISC",
"peerDependencies": {
"typeorm": "^0.3.16"
},
"devDependencies": {
"@types/node": "^20.3.3",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^7.19.0",
"jest": "^29.5.0",
"prettier": "^2.2.1",
"sinon": "^9.2.4",
"sqlite3": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typeorm": "^0.3.16",
"typescript": "^5.1.6"
},
"files": [
"lib/**/*"
]
}