forked from wwwouter/typed-knex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.99 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
{
"name": "@wwwouter/typed-knex",
"version": "4.5.0",
"description": "Makes knex better by working with TypeScript",
"dependencies": {
"flat": "5.0.2",
"reflect-metadata": "0.1.13",
"ts-morph": "8.1.2",
"yargs": "16.1.0"
},
"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",
"prepublish": "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"
},
"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": {
"@types/chai": "4.2.14",
"@types/chai-as-promised": "7.1.3",
"@types/flat": "5.0.1",
"@types/mocha": "8.0.3",
"@types/sqlite3": "3.1.6",
"@types/yargs": "15.0.9",
"@wwwouter/tslint-contrib": "1.0.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"knex": "0.95.0",
"mocha": "8.2.0",
"npm-check-updates": "9.1.2",
"sqlite3": "5.0.0",
"tslint": "6.1.3",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "4.2.3"
},
"prettier": {
"singleQuote": false,
"tabWidth": 4,
"printWidth": 220
}
}