-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.27 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
{
"name": "schematar",
"version": "3.1.0",
"description": "Creates mongoose schemas, typescript interfaces and json schemas from a single schema",
"homepage": "https://github.com/BaronaGroup/schematar",
"repository": {
"type": "git",
"url": "BaronaGroup/schematar"
},
"license": "MIT",
"author": {
"name": "Tapani Haka"
},
"devDependencies": {
"@types/glob": "8.1.0",
"@types/gulp": "4.0.17",
"@types/gulp-typescript": "2.13.0",
"@types/jest": "27.5.2",
"@types/mkdirp": "1.0.2",
"@types/node": "14.18.63",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-typescript": "5.0.1",
"import-sort-style-module": "6.0.0",
"jest": "27.5.1",
"mongoose": "8.7.3",
"nodemon": "3.1.7",
"npm-release": "1.0.0",
"pre-commit": "1.2.2",
"pre-commit-eslint-and-prettier": "1.0.0",
"prettier": "3.3.3",
"prettier-plugin-import-sort": "0.0.7",
"ts-jest": "27.1.5",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"typescript": "4.9.5"
},
"dependencies": {
"glob": "^7.1.3",
"karhu": "^1.4.0",
"mkdirp": "1.0.4",
"mongodb": "4.17.2"
},
"scripts": {
"build": "gulp",
"eslint": "eslint --max-warnings=0 .",
"lint": "npm run eslint",
"test": "jest",
"prepare": "npm run build",
"release": "npm test && npm-release",
"prettier": "npx prettier --write $(find src -name '*.ts')",
"pre-commit-eslint-and-prettier": "pre-commit-eslint-and-prettier"
},
"main": "dist/api.js",
"bin": "bin/bin.js",
"jest": {
"collectCoverageFrom": [
"/src/**/*.ts"
],
"testMatch": [
"**/*-test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"setupFiles": [
"<rootDir>/src/test/test-setup.ts"
],
"testEnvironment": "node",
"globals": {
"ts-jest": {
"tsConfig": {
"incremental": true
}
}
}
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"files": [
"src",
"dist",
"bin"
],
"pre-commit": [
"pre-commit-eslint-and-prettier"
]
}