-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "@astrocoders/postgres-orm",
"version": "1.0.7",
"description": "PostgreSQL ORM",
"main": "lib/index.js",
"repository": "https://github.com/Astrocoders/postgres-orm",
"author": "Astrocoders <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "yarn build",
"build": "tsc",
"lint:staged": "lint-staged"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/lodash": "^4.14.116",
"@types/node": "^12.6.8",
"@types/pg": "^7.4.14",
"@types/ramda": "^0.26.18",
"eres": "Astrocoders/eres",
"fluture": "^11.0.2",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"lodash": "^4.17.11",
"prettier": "^1.18.2",
"ramda": "^0.26.1",
"typescript": "^3.5.3"
},
"peerDependencies": {
"pg": "^7.12.1"
},
"lint-staged": {
"*.ts": [
"prettier --write --single-quote true --trailing-comma all --print-width 120 --semi false",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}