forked from fxjs-modules/orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.78 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.78 KB
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
{
"name": "fib-orm",
"version": "2.1.0",
"description": "ORM for fibjs - unified package",
"main": "lib/orm/index.js",
"types": "lib/orm/index.d.ts",
"exports": {
".": "./lib/orm/index.js",
"./cli": "./lib/cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fibjs/fib-orm.git"
},
"author": "fibjs",
"homepage": "https://github.com/fibjs/fib-orm",
"license": "ISC",
"keywords": [
"orm",
"database",
"fibjs",
"mysql",
"sqlite",
"postgres",
"redis"
],
"scripts": {
"build": "rm -rf ./lib && tsc && cp src/codepoints-map.json lib/codepoints-map.json && cp -r src/knex/deps lib/knex/deps",
"test": "fibjs test",
"ci": "npm run ci-sqlite",
"ci-mysql": "npm run build && cross-env ORM_PROTOCOL=mysql npm run test",
"ci-sqlite": "npm run build && cross-env ORM_PROTOCOL=sqlite npm run test",
"ci-postgres": "npm run build && cross-env ORM_PROTOCOL=postgres npm run test"
},
"dependencies": {
"@fibcli/make-cli": "^0.1.6",
"@fibcli/ora": "^0.1.0",
"@fibjs/chalk": "^1.0.0",
"@fibjs/enforce": "^0.1.1",
"@types/diff": "^5.0.2",
"@types/knex": "^0.16.1",
"@types/semver": "^7.3.10",
"diff": "^5.1.0",
"fib-cache": "^1.1.0",
"fib-kv": "^1.3.1",
"knex": "^2.5.1",
"lodash.clonedeep": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.merge": "^4.6.1",
"parse-querystring-dotkey": "^1.0.3",
"rxjs": "^6.5.2",
"semver": "^7.3.7"
},
"devDependencies": {
"@fibjs/types": "^0.35.0",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.flatten": "^4.4.6",
"@types/lodash.merge": "^4.6.6",
"cross-env": "^5.2.0",
"esbuild": "^0.27.5",
"fib-typify": "^0.11.3",
"rimraf": "^3.0.2",
"ts-expect": "^1.3.0",
"typescript": "^5.9.3"
},
"private": false,
"files": [
"lib"
],
"publishConfig": {
"access": "public"
}
}