-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.63 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
66
67
68
69
{
"name": "dittorm",
"version": "1.0.0",
"description": "A Node.js ORM for MySQL, SQLite, PostgreSQL, MongoDB, GitHub and serverless service like Deta, InspireCloud, CloudBase, LeanCloud.",
"main": "dist/src/index.js",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "tsc",
"test": "nyc ava test/index.js && nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walinejs/ditto.git"
},
"keywords": [
"github",
"nodejs",
"mysql",
"orm",
"mongodb",
"serverless",
"sqlite",
"postgresql",
"leancloud",
"deta",
"cloudbase",
"inspirecloud"
],
"author": "lizheming<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/walinejs/dittorm/issues"
},
"homepage": "https://github.com/walinejs/dittorm#readme",
"dependencies": {
"@byteinspire/api": "^1.0.12",
"@cloudbase/node-sdk": "^2.7.1",
"deta": "^1.0.2",
"fast-csv": "^4.3.6",
"leancloud-storage": "^4.12.2",
"mongodb": "^4.0.0",
"tablestore": "^5.1.1",
"think-helper": "^1.1.3",
"think-model": "^1.5.4",
"think-model-mysql": "^1.1.6",
"think-model-postgresql": "^1.1.7",
"think-mongo": "^2.1.2",
"undici": "^5.0.0"
},
"devDependencies": {
"@types/mysql": "2.15.21",
"@types/node": "17.0.21",
"@types/pg": "8.6.5",
"ava": "4.3.1",
"dotenv": "16.0.1",
"nyc": "15.1.0",
"typescript": "4.7.4"
},
"optionalDependencies": {
"think-model-sqlite": "^1.2.2"
},
"files": [
"dist",
"src",
"package.json",
"package-lock.json",
"README.md"
]
}