This repository was archived by the owner on Jun 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.8 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.8 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
{
"name": "@mildjs/typeorm",
"version": "1.0.1",
"author": "Thada Wangthammang",
"description": "TypeORM module (extension) for @mildjs/core",
"directories": {
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mildjs/typeorm.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=10",
"npm": ">=5"
},
"bugs": {
"url": "https://github.com/mildjs/typeorm/issues"
},
"homepage": "https://github.com/mildjs/typeorm#readme",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" ",
"lint": "tslint -p tsconfig.build.json",
"test": "jest --config jestconfig.json --no-cache --forceExit",
"test:coverage": "jest --config jestconfig.json --no-cache ---forceExit --coverage",
"test:watch": "jest --config jestconfig.json --watch --forceExit",
"check": "run-s format lint",
"prepublishOnly": "run-s test build",
"publish:patch": "npm version patch --force && npm publish",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"example": "chokidar \"**/*.ts\" -c \" ts-node example/tester/index.ts\"",
"doc:build": "typedoc",
"doc:watch": "chokidar \"src/**/*.ts\" -c \"typedoc\"",
"doc:serve": "live-server _docs",
"doc:dev": "run-p doc:build && run-p doc:watch doc:serve",
"dev": "run-s dev:prepare dev:watch",
"dev:watch": "npm run build && chokidar \"src/**/*.ts\" -c \"npm run build\"",
"dev:prepare": "npm install -D @mildjs/core@file:../mildjs/packages/core",
"dev:revert": "npm install -D @mildjs/core@next"
},
"dependencies": {},
"peerDependencies": {
"@mildjs/core": "next",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.29",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2"
},
"devDependencies": {
"@mildjs/core": "^2.0.0-alpha.5",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/supertest": "^2.0.10",
"chokidar-cli": "^2.1.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"express": "^4.17.1",
"husky": "^4.3.0",
"jest": "^26.6.1",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"sqlite3": "^5.0.0",
"supertest": "^6.0.0",
"ts-jest": "^26.4.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.19.2",
"typeorm": "^0.2.29",
"typescript": "^4.0.5"
},
"files": [
"dist/**/*"
],
"keywords": [
"typeorm"
],
"husky": {
"hooks": {
"pre-commit": "npm run dev:revert"
}
}
}