forked from mmkal/pgkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.59 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
63
64
65
66
67
68
69
70
{
"name": "slonik-tools",
"version": "0.0.2",
"description": "slonik tools monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b .",
"dependencies": "docker-compose up",
"test": "jest",
"update-readme": "node scripts/update-readme",
"migrate": "lerna run migrate",
"ci": "run-s update-readme build migrate test build",
"coverage": "yarn test --coverage",
"coveralls": "yarn coverage --coverageReporters=text-lcov | coveralls"
},
"prettier": {
"bracketSpacing": false,
"tabWidth": 2,
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all",
"semi": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmkal/slonik-tools.git"
},
"keywords": [
"slonik"
],
"author": "mmkal",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmkal/slonik-tools/issues"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"collectCoverageFrom": [
"**/*.ts",
"!**/*.d.ts"
]
},
"homepage": "https://github.com/mmkal/slonik-tools#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.6.8",
"@types/slonik": "^21.4.0",
"check-clean": "^0.1.0",
"coveralls": "^3.0.5",
"jest": "^24.9.0",
"lerna": "^3.16.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"slonik": "^21.4.1",
"ts-expect": "^1.1.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}