forked from pkosiec/mongo-seeding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 973 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"private": true,
"version": "0.0.1",
"name": "mongo-seeding",
"author": {
"name": "Paweł Kosiec",
"email": "[email protected]",
"url": "https://www.kosiec.net"
},
"repository": {
"type": "git",
"url": "https://github.com/pkosiec/mongo-seeding"
},
"bugs": {
"url": "https://github.com/pkosiec/mongo-seeding/issues"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"changelog": "lerna-changelog",
"publish": "lerna publish --pre-dist-tag next",
"clean": "lerna clean",
"update-deps": "bash ./.ci/update-packages.sh"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"husky": "^4.2.1",
"lerna": "^3.20.2",
"lerna-changelog": "^1.0.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"lint-staged": {
"**/*.{ts,js,json}": [
"prettier --write",
"git add"
]
}
}