forked from felixmosh/knex-mock-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.09 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "knex-mock-client",
"version": "1.8.0",
"description": "A mock client for knex which allows you to write tests with DB interactions",
"homepage": "https://github.com/felixmosh/knex-mock-client#readme",
"bugs": {
"url": "https://github.com/felixmosh/knex-mock-client/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixmosh/knex-mock-client.git"
},
"license": "MIT",
"author": "felixmosh",
"main": "dist/index.js",
"files": [
"dist",
"types"
],
"scripts": {
"start": "ts-node-dev src/index.ts",
"build": "rm -rf dist && tsc",
"lint": "eslint {src,tests,types}/**/*.ts",
"test": "jest test",
"version": "auto-changelog -p && git add CHANGELOG.md",
"release": "release-it --only-version",
"prepare": "npm run build"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@faker-js/faker": "^6.3.1",
"@types/jest": "^27.5.0",
"@types/lodash.clonedeep": "^4.5.7",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"auto-changelog": "^2.4.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^28.1.0",
"knex": "^2.0.0",
"lint-staged": "^11.2.3",
"prettier": "^2.6.2",
"release-it": "^15.0.0",
"ts-jest": "^28.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
},
"peerDependencies": {
"knex": "^2.0.0"
},
"engines": {
"node": ">=12"
},
"release-it": {
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"hooks": {
"before:init": [
"yarn lint",
"yarn test"
],
"after:bump": [
"npx auto-changelog -p",
"yarn build"
]
},
"github": {
"release": true
}
}
}