-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "typeorm-fixtures",
"version": "1.0.4",
"description": "Fixtures helper for typeorm",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"new:version": "npm version patch && npm publish && git push origin master && git push --tags",
"test": "npm run build",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/altiore/typeorm-fixtures.git"
},
"keywords": [
"typeorm",
"fixtures",
"fixture",
"helper"
],
"author": {
"name": "Razzwan",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/altiore/typeorm-fixtures/issues"
},
"homepage": "https://github.com/altiore/typeorm-fixtures#readme",
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "13.7.0",
"husky": "4.2.1",
"lint-staged": "7.3.0",
"lodash": "^4.17.15",
"prettier": "2.5.1",
"typeorm": "0.2.25",
"typescript": "3.7.5"
},
"peerDependencies": {
"typeorm": "0.2.25",
"lodash": "4.17.15"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write --print-width 120 --trailing-comma all --single-quote --parser typescript --arrow-parens always",
"git add"
],
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {}
}