-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.93 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.93 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
67
68
69
70
71
72
73
74
75
{
"name": "quark",
"version": "2.1.2",
"description": "Fundamental project template",
"author": {
"name": "Alberto Basalo",
"email": "albertobasalo@hotmail.com",
"url": "https://albertobasalo.dev"
},
"homepage": "https://github.com/AlbertoBasalo/quark#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AlbertoBasalo/quark.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AlbertoBasalo/quark/issues"
},
"scripts": {
"prestart": "npm run build",
"start": "node ./dist/main.js",
"test": "jest --coverage",
"build": "tsc -p tsconfig.json",
"dev": "ts-node ./src/main.ts",
"watch": "jest --watch",
"ts-node": "ts-node",
"format": "prettier --write \"./**/*.{ts,json}\"",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prerelease": "standard-version ",
"release": "git push --follow-tags origin main",
"update": "ncu -u"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"esbuild": "^0.17.16",
"esbuild-jest": "^0.5.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"npm-check-updates": "^16.10.8",
"prettier": "^2.8.7",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"typescript": "^5.0.4"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "esbuild-jest"
},
"moduleNameMapper": {
"@ab/(.*)": "<rootDir>/src/$1"
},
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"verbose": true,
"collectCoverage": false,
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": -10
}
}
}
}