-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.13 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
74
75
76
77
78
79
80
81
{
"name": "egg-fancy-decorator",
"version": "1.0.7",
"description": "Decorator support plugin for egg framework",
"main": "lib/index.js",
"types": "index.d.ts",
"eggPlugin": {
"name": "fancyDecorator"
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"decorator"
],
"dependencies": {
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@eggjs/tsconfig": "^1.0.0",
"@iceworks/spec": "^1.0.1",
"@types/mocha": "^2.2.40",
"@types/node": "^7.10.14",
"@types/supertest": "^2.0.0",
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"egg": "^2.36.0",
"egg-bin": "^4.11.0",
"egg-ci": "^2.1.0",
"egg-mock": "^3.16.0",
"eslint": "^8.0.0",
"eslint-config-egg": "^12.0.0",
"eslint-config-prettier": "^8.5.0",
"factory-girl": "^5.0.2",
"husky": "^8.0.1",
"prettier": "^2.0.5",
"prettier-plugin-organize-imports": "^3.0.0",
"pretty-quick": "^3.1.3",
"sequelize-cli": "^4.0.0",
"stylelint": "^13.1.0",
"typescript": "^4.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "npm run tsc && npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "npm run tsc && egg-bin cov",
"lint": "eslint . --ext .ts --resolve-plugins-relative-to .",
"build": "npm run tsc",
"tsc": "ets && tsc -p tsconfig.json",
"prepare": "husky install",
"prettier": "prettier --write \"./{lib,config,test}/**/*.{json,ts}\"",
"prepublish": "npm run tsc",
"clean": "ets clean",
"ci": "npm run tsc && egg-bin pkgfiles --check && npm run lint && npm run cov",
"pkgfiles": "egg-bin pkgfiles",
"autod": "autod"
},
"files": [
"lib",
"config",
"app.js",
"index.d.ts"
],
"ci": {
"version": "8, 10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bruce007lee/egg-fancy-decorator.git"
},
"bugs": {
"url": "https://github.com/bruce007lee/egg-fancy-decorator/issues"
},
"homepage": "https://github.com/bruce007lee/egg-fancy-decorator#readme",
"author": "bruce007lee",
"license": "MIT"
}