-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "bwcx-plugin-typeorm",
"version": "1.0.3",
"description": "TypeORM plugin for bwcx",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json && copyfiles -u 1 \"src/**/*.{js,d.ts}\" dist && copyfiles package.json README.md dist",
"publish:manually": "cd dist && npm publish --access public && cd -"
},
"keywords": [
"bwcx",
"typeorm",
"plugin",
"nodejs"
],
"author": "bLue",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bwcxjs/bwcx-plugin-typeorm.git"
},
"dependencies": {
"inversify": "^5.1.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.20",
"bwcx-common": "^1.0.1",
"bwcx-core": "^1.0.1",
"bwcx-ljsm": "^1.0.2",
"copyfiles": "^2.4.1",
"jest": "^26.6.3",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.5",
"typeorm": "^0.2.31",
"typescript": "^4.6.4"
},
"peerDependencies": {
"bwcx-common": "^1.0.1",
"bwcx-core": "^1.0.1",
"bwcx-ljsm": "^1.0.2",
"typeorm": "^0"
}
}