-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.47 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
{
"name": "@rxdi/xmigrate",
"version": "0.7.56",
"main": "./lib/index.js",
"author": "Kristiyan Tachev",
"license": "MIT",
"scripts": {
"build": "tsc && npx gapi build",
"build-executable": "npx gapi build --single-executable",
"lint": "npx eslint ./src --ext .ts",
"lint-fix": "npx eslint ./src --fix --ext .ts",
"pretest": "npm run lint",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/rxdi/xmigrate"
},
"bin": {
"xmigrate": "./dist/main.js"
},
"dependencies": {
"@rxdi/core": "^0.7.178",
"chalk": "2.4.2",
"esbuild": "^0.20.2",
"esm": "3.2.25"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@rxdi/parcel-plugin-shebang": "^0.7.38",
"@types/chalk": "2.2.0",
"@types/jest": "^24.0.22",
"@types/mongodb": "3.1.30",
"@types/mongoose": "^5.5.30",
"@types/node": "^12.0.10",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-plugin-module-resolver": "^4.0.0",
"coveralls": "3.0.5",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-simple-import-sort": "^5.0.0",
"jest": "^24.8.0",
"prettier": "^2.0.4",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"mongodb": "3.3.3",
"mongoose": "5.7.6"
},
"peerDependencies": {
"mongodb": "*",
"mongoose": "*"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"lcov",
"html"
],
"rootDir": "./",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"node"
],
"setupFilesAfterEnv": [
"./jest-setup.ts"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/.xmigrate/**",
"!**/lib/**",
"!**/examples/**",
"!./xmigrate.ts",
"!./src/app.module.ts",
"!./src/index.ts",
"!./src/main.ts",
"!./src/services/index.ts",
"!./src/services/generic-runner/generic-runner.service.ts",
"!./src/migrations.module.ts",
"!./tests/helpers/**"
],
"testRegex": "/*/.*\\.spec.(ts|tsx|js)$",
"verbose": true,
"collectCoverage": true
},
"types": "./lib/index.d.ts",
"module": "./lib/index.js",
"typings": "./lib/index.d.ts"
}