-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "knex-increment-upsert",
"version": "1.3.0",
"description": "knex insert on duplicate key update & increment",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a179346/knex-increment-upsert.git"
},
"files": [
"dist/*",
"LICENSE"
],
"author": "a179346",
"license": "MIT",
"keywords": [
"upsert",
"increment",
"on-duplicate-key",
"knex",
"sql",
"query",
"postgresql",
"mysql",
"sqlite3"
],
"bugs": {
"url": "https://github.com/a179346/knex-increment-upsert/issues"
},
"homepage": "https://github.com/a179346/knex-increment-upsert#readme",
"devDependencies": {
"@types/node": "^16.11.13",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"knex": "^0.95.14",
"mysql": "^2.18.1",
"nodemon": "^2.0.15",
"ts-node": "^10.2.1",
"typescript": "^4.5.4"
}
}