-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "@atb-as/utils",
"version": "6.1.3",
"description": "Shared utility methods and types for AtB products",
"repository": {
"url": "https://github.com/AtB-AS/utils"
},
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"private": false,
"scripts": {
"build": "tsc",
"lint": "eslint",
"prettier": "prettier -c src",
"check-all": "yarn tsc && yarn lint && yarn prettier && yarn test",
"prepublishOnly": "yarn build",
"test": "jest"
},
"license": "EUPL-1.2",
"files": [
"lib"
],
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"zod": "^4.1.11"
},
"dependencies": {
"lodash": "^4.17.21"
},
"peerDependencies": {
"zod": "^4.1.11"
}
}