-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "knex-tree",
"version": "1.4.0",
"description": "Query hierarchical data structures in sql with knex",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a179346/knex-tree.git"
},
"files": [
"dist/*",
"LICENSE"
],
"author": "a179346",
"license": "MIT",
"keywords": [
"tree",
"tree-structure",
"hierarchical",
"hierarchical-data",
"sql",
"query",
"postgresql",
"mysql",
"sqlite3",
"oracle",
"mssql",
"knex"
],
"bugs": {
"url": "https://github.com/a179346/knex-tree/issues"
},
"homepage": "https://github.com/a179346/knex-tree#readme",
"devDependencies": {
"@types/node": "^16.6.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"knex": "^0.21.21",
"mysql": "^2.18.1",
"nodemon": "^2.0.12",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}