-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 1.74 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
70
71
72
73
{
"name": "egg-orm",
"version": "2.4.1",
"description": "Object relational mapping for Egg applications",
"eggPlugin": {
"name": "orm"
},
"keywords": [
"egg",
"egg-plugin",
"sequelize",
"leoric",
"orm",
"model"
],
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"config",
"lib",
"types",
"app.js",
"agent.js"
],
"scripts": {
"pretest": "run-s dts test:prepare",
"test:prepare": "./test/prepare.sh",
"dts": "run-p dts:test dts:example",
"dts:test": "tsc",
"dts:example": "run-p dts:example:basic dts:example:sequelize",
"dts:example:basic": "cd examples/typescript/basic/ && tsc",
"dts:example:sequelize": "cd examples/typescript/sequelize/ && tsc",
"test": "DEBUG=leoric egg-bin test --full-trace",
"test-local": "DEBUG=leoric egg-bin test --full-trace",
"coveralls": "egg-bin cov"
},
"maintainers": [
"cyjake (http://cyj.me)",
"jimmydaddy <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/eggjs/egg-orm",
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eggjs/egg-orm.git"
},
"dependencies": {
"debug": "^4.3.4",
"leoric": "^2.9.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@eggjs/tegg": "^1.4.0",
"@eggjs/tegg-config": "^1.2.1",
"@eggjs/tegg-plugin": "^1.3.8",
"@types/mocha": "^9.1.0",
"egg": "^2.25.0",
"egg-bin": "^4.14.0",
"egg-mock": "^3.24.2",
"eslint": "^8.12.0",
"eslint-config-egg": "^7.5.1",
"mysql": "^2.17.1",
"mysql2": "^3.9.4",
"npm-run-all": "^4.1.5",
"typescript": "^4.6.2"
},
"engines": {
"node": ">= 10.0.0"
}
}