-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
83 lines (83 loc) · 2.76 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": "@wwwouter/typed-knex",
"version": "4.14.1",
"description": "Makes knex better by working with TypeScript",
"dependencies": {
"flat": "5.0.2",
"reflect-metadata": "0.1.13",
"ts-morph": "15.1.0",
"yargs": "17.5.1"
},
"main": "./dist/src/index.js",
"typings": "dist/src/index",
"scripts": {
"test": "npm run mocha:all",
"build": "tsc -p tsconfig.json",
"build:dist": "tsc --outDir dist",
"prepack": "npm run clean; npm run build:dist",
"mocha:unit": "npm run build && mocha --bail \"build/test/unit/**/*Tests.js\"",
"mocha:integration": "npm run build && mocha --bail \"build/test/integration/**/*Tests.js\"",
"mocha:all": "npm run build && mocha \"build/test/**/*Tests.js\"",
"upgrade-packages": "rm -f package-lock.json && ncu --removeRange -u -x @types/node",
"prettier:fix": "prettier --write . --ignore-path ./.gitignore",
"prettier:check": "prettier --check . --ignore-path ./.gitignore",
"prepare": "husky install",
"clean": "rimraf dist build",
"lint": "eslint --format visualstudio --quiet -c .eslintrc.js 'src/**/*.ts'",
"lint:fix": "npm run lint -- --fix"
},
"bin": {
"typed-knex": "./dist/src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wwwouter/typed-knex.git"
},
"keywords": [
"knex",
"typed",
"typescript",
"typenpknex"
],
"author": "W.Mooij",
"license": "MIT",
"bugs": {
"url": "https://github.com/wwwouter/typed-knex/issues"
},
"homepage": "https://github.com/wwwouter/typed-knex#readme",
"devDependencies": {
"@type-challenges/utils": "0.1.1",
"@types/chai": "4.3.3",
"@types/chai-as-promised": "7.1.5",
"@types/flat": "5.0.2",
"@types/mocha": "9.1.1",
"@types/node": "18.7.6",
"@types/yargs": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.6",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"knex": "2.2.0",
"lint-staged": "13.0.3",
"mocha": "10.0.0",
"npm-check-updates": "16.0.5",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"sqlite3": "5.0.11",
"typescript": "4.7.4"
},
"prettier": {
"tabWidth": 4,
"printWidth": 220
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}