-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.25 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "egg-typed",
"version": "1.0.7",
"description": "typed for egg.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"**/*.d.ts",
"bin/**/*.js",
"app/**/*.js",
"config/**/*.js",
"lib/**/*.js",
"di.js",
"orm.js",
"meta.js",
"tracking.js",
"test.js"
],
"bin": {
"egg-typed": "./bin/index.js"
},
"dependencies": {
"@types/diff": "^3.5.3",
"@types/fast-levenshtein": "^0.0.1",
"@types/request": "^2.48.1",
"@types/rimraf": "^2.0.2",
"@types/uuid": "^3.4.4",
"colorful": "^2.1.0",
"commander": "^2.19.0",
"egg": "^2.16.0",
"egg-aop": "^0.5.3",
"egg-controller": "^0.3.10",
"egg-typed-tracking": "^0.1.44",
"fast-levenshtein": "^2.0.6",
"orm-ts": "^0.5.0",
"rimraf": "^2.6.3",
"ts-node": "^8.0.2",
"tsconfig-paths": "^3.8.0",
"tslib": "^1.9.3",
"uuid": "^3.3.2"
},
"peerDependencies": {
"typescript": "^3.3.3"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/supertest": "^2.0.7",
"autod": "^3.0.1",
"cheerio": "^1.0.0-rc.2",
"egg-bin": "^4.11.0",
"egg-ci": "^1.11.0",
"egg-mock": "^3.21.0",
"reflect-metadata": "^0.1.13",
"supertest": "^3.4.2",
"tslint": "^5.12.1",
"typescript": "~3.3.3",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test:build": "npm run ts:test && npm run lint -- --fix",
"test": "npm run ts && npm run test:build && npm run test-local",
"test-local": "egg-bin test",
"cov": "npm run test:build && egg-bin cov",
"lint": "tslint -p .",
"ci": "npm run cov",
"autod": "autod",
"ts:test": "rimraf test/**/*.js && tsc -p test",
"ts": "rimraf app/**/*.js lib/**/*.js app/**/*.d.ts lib/**/*.d.ts && tsc",
"prepublish": "npm run test && npm run ts",
"postpublish": "node scripts/published.js"
},
"ci": {
"version": "8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhang740/egg-typed.git"
},
"keywords": [
"ts",
"egg",
"egg-framework"
],
"author": "zhang740",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhang740/egg-typed/issues"
},
"homepage": "https://github.com/zhang740/egg-typed#readme"
}