-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 905 Bytes
/
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
{
"name": "knex-stringcase",
"version": "1.5.5",
"description": "Helper switches key case for npm knex",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"scripts": {
"build": "tsc",
"test": "tsx --test"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Kequc/knex-stringcase.git"
},
"keywords": [
"knex",
"knexjs",
"camelcase",
"snakecase"
],
"author": "Nathan Lunde-Berry",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kequc/knex-stringcase/issues"
},
"homepage": "https://github.com/Kequc/knex-stringcase#readme",
"devDependencies": {
"@types/node": "^22.7.5",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"dependencies": {
"stringcase": "^4.3.1"
}
}