forked from vitta-health/moleculer-db-adapter-typeorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.09 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@vitta-health/moleculer-db-adapter-typeorm",
"version": "0.1.35",
"description": "typescript sql adapter using typeorm",
"main": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"build": "npm run clean && npm run tsc",
"copy-types": "copyfiles -u 1 ./src/*.d.ts ./dist/compiled/src",
"copy-package-json": "copyfiles ./package.json ./README.md ./dist/package",
"copy-src": "copyfiles -u 3 ./dist/compiled/src/**/* ./dist/package/",
"copy-entry": "cp ./dist/compiled/src/index* ./dist/package/",
"create-package": "npm run copy-package-json && npm run copy-src && npm run copy-entry",
"dev": "node dist/compiled/examples/index.js",
"dev:decorator": "node dist/compiled/examples/indexDecorator.js",
"test": "jest --coverage",
"test:travis": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"tsc": "tsc --declaration",
"ts:watch": "tsc --watch",
"clean": "rimraf dist coverage",
"deploy": " npm build && npm version patch -m \"Upgrade to %s\" && npm run create-package && cd ./dist/package && npm publish",
"preversion": "npm run lint && npm run tsc && npm run test",
"postversion": "git push && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitta-health/moleculer-db-adapter-typeorm.git"
},
"keywords": [
"moleculer",
"database",
"typeorm"
],
"author": "Dan Kuida",
"license": "MIT",
"bugs": {
"url": "https://github.com/vitta-health/moleculer-db-adapter-typeorm/issues"
},
"homepage": "https://github.com/vitta-health/moleculer-db-adapter-typeorm#readme",
"devDependencies": {
"@dkuida/logger-wrapper": ">=1.5.3",
"@types/bluebird": "^3.5.27",
"@types/jest": "^24.0.16",
"@types/node": "^12.6.9",
"@typescript-eslint/parser": "^1.13.0",
"bluebird": "^3.5.5",
"chalk": "^2.4.2",
"copyfiles": "^2.1.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"moleculer": ">=0.13.5",
"moleculer-db": ">=0.7.9",
"moleculer-decorators": "1.1.0",
"pre-commit": "^1.2.2",
"reflect-metadata": ">=0.1.13",
"sqlite3": "^4.0.9",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.16.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": ">=3.4.5"
},
"peerDependencies": {
"moleculer-db": "0.7.x || 0.8.x"
},
"engines": {
"node": ">= 8.x.x"
},
"pre-commit": [
"lint:fix",
"tsc",
"test"
],
"jest": {
"testEnvironment": "node",
"rootDir": "./",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"roots": [
"./test"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".*\\.(test|spec).(ts|js)$",
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json"
}
},
"setupFiles": [],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"typeorm": "^0.2.31"
}
}