-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.04 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.04 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@hackycy/egg-typeorm",
"version": "0.5.1",
"description": "TypeORM For Eggjs",
"eggPlugin": {
"name": "typeorm"
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"typeorm"
],
"dependencies": {
"globby": "^11.0.1",
"js-yaml": "^3.14.0",
"prettier": "^2.1.2"
},
"devDependencies": {
"@types/node": "^14.11.2",
"typeorm": "^0.2.31",
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"egg": "^2.16.0",
"egg-bin": "^4.11.0",
"egg-ci": "^1.11.0",
"egg-mock": "^3.21.0",
"egg-ts-helper": "^1.25.8",
"eslint": "^5.13.0",
"eslint-config-egg": "^7.1.0",
"ts-node": "^9.0.0"
},
"egg": {
"typescript": true,
"framework": "egg",
"tsHelper": {
"watchDirs": {
"typeorm": {
"trigger": [
"add",
"unlink",
"change"
],
"enabled": true,
"directory": ".",
"generator": "@hackycy/egg-typeorm/generator",
"pattern": [
"**/*.(ts|js)",
"ormconfig.js",
"ormconfig.json",
"ormconfig.yml",
"ormconfig.yaml"
],
"watch": true
}
}
}
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "egg-bin pkgfiles --check && npm run lint && npm run cov",
"pkgfiles": "egg-bin pkgfiles",
"autod": "autod"
},
"files": [
"app.js",
"generator.js",
"lib/**/*.js",
"app/**/*.js",
"package.json",
"index.d.ts",
"README.md",
"LICENSE"
],
"types": "index.d.ts",
"ci": {
"version": "8, 10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackycy/egg-typeorm.git"
},
"bugs": {
"url": "https://github.com/hackycy/egg-typeorm/issues"
},
"homepage": "https://github.com/hackycy/egg-typeorm",
"author": "hackycy",
"license": "MIT"
}