This repository was archived by the owner on Mar 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.7 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.7 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
{
"name": "@lerianstudio/lib-commons-js",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"precommit": "node-git-hooks",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LerianStudio/lib-commons-js.git"
},
"author": {
"name": "Lerian Studio",
"email": "contato@lerian.studio",
"url": "https://lerian.studio"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/LerianStudio/lib-commons-js/issues"
},
"homepage": "https://github.com/LerianStudio/lib-commons-js#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"jest": "^29.7.0",
"node-git-hooks": "^1.0.7",
"prettier": "^3.5.3",
"semantic-release": "^24.2.3",
"ts-jest": "^29.3.1",
"typescript": "^5.8.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "commons",
"testRegex": ".*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"dependencies": {
"decimal.js-light": "^2.5.1",
"node-cache": "^5.1.2"
}
}