-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.86 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.86 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
{
"name": "egg-zing-orm",
"version": "0.3.5",
"description": "Simple orm with zingOrm, for egg plugin.",
"egg": {
"typescript": true,
"declarations": true
},
"eggPlugin": {
"name": "zingOrm"
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"eggZingOrm",
"egg-zing-orm",
"ZingOrm",
"orm"
],
"dependencies": {
"fs-extra": "^10.0.0",
"fs-jetpack": "^4.1.1",
"prettier": "^2.2.1",
"zing-orm": "^0.2.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/joi": "^17.2.3",
"@types/lodash": "^4.14.172",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/supertest": "^2.0.0",
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"egg": "^2.16.0",
"egg-bin": "^4.11.0",
"egg-ci": "^1.8.0",
"egg-mock": "^3.16.0",
"eslint": "^6.7.2",
"eslint-config-egg": "^8.0.0",
"tslib": "^1.9.0",
"typescript": "^3.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test2": "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 && npm run tsc",
"tsc": "ets && tsc -p tsconfig.json",
"pkgfiles": "egg-bin pkgfiles",
"autod": "autod",
"clean": "ets clean"
},
"files": [
"app/**/*.js",
"config/*.js",
"lib/*.js",
"app.js",
"index.js",
"index.d.ts"
],
"ci": {
"version": "8, 10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elixirChain/egg-zing-orm.git"
},
"bugs": {
"url": "https://github.com/elixirChain/egg-zing-orm/issues"
},
"homepage": "https://github.com/elixirChain/egg-zing-orm#readme",
"author": "17Damon",
"license": "MIT"
}