-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.78 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.78 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
{
"name": "jedlik-typescript-vscode-template",
"version": "1.0.0",
"description": "Jedlik project template for using TypeScript, Jest and Node.js in VS Code.",
"engines": {
"node": "16.x"
},
"main": "App.js",
"repository": {
"private": false,
"type": "git",
"url": "https://github.com/nitslaszlo/JedlikTsTemplate"
},
"scripts": {
"start": "node ./dist/App.js",
"compile": "tsc",
"compile:watch": "tsc --watch",
"postinstall": "tsc",
"kill": "taskkill /im node.exe /F",
"test": "jest || ECHO.",
"dev": "nodemon"
},
"author": "Nits László",
"license": "MIT",
"dependencies": {
"tslib": "^2.4.1"
},
"devDependencies": {
"@types/jest": "^29.2.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"preset": "ts-jest",
"verbose": true,
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"collectCoverage": true,
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/**/*.{ts,js}",
"!src/**/*.d.ts"
]
}
}