-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "@linnify/typeorm-factory",
"version": "1.0.12",
"description": "Factory for typeorm",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"codecov": "./node_modules/.bin/codecov",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"prepublish": "tsc",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Bogdan Darius",
"repository": {
"type": "git",
"url": "git+https://github.com/linnify/typeorm-factory.git"
},
"keywords": [
"typeorm",
"factory",
"testing",
"typescript",
"factories",
"tests"
],
"homepage": "https://github.com/linnify/typeorm-factory#readme",
"license": "ISC",
"peerDependencies": {
"typeorm": "^0.2.18"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"codecov": "^3.8.1",
"eslint": "^7.19.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"sinon": "^9.2.4",
"sqlite3": "^5.0.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typeorm": "^0.2.31",
"typescript": "^4.1.3"
},
"files": [
"lib/**/*"
]
}