-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.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
{
"name": "typeorm-plus",
"private": false,
"version": "0.0.42",
"description": "Add extra features to TypeORM",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Winston Lee",
"email": "iwinston@163.com"
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/iWinston/typeorm-plus.git"
},
"tags": [
"typescript",
"typescript-orm",
"typeorm",
"orm"
],
"license": "MIT",
"scripts": {
"lint": "tslint -p tsconfig.json -c tslint.json ./src/**/*.ts",
"clean": "rm -rf ./dist",
"build": "yarn clean && tsc && yarn copy",
"copy": "cp package.json dist/ && cp README.md dist/"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"typeorm": "^0.2.18"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"prettier": "^1.14.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
},
"bugs": {
"url": "https://github.com/iWinston/typeorm-plus/issues"
},
"homepage": "https://github.com/iWinston/typeorm-plus#readme"
}