-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "@atb-as/utils",
"version": "2.0.0",
"description": "Shared utility methods and types for AtB products",
"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/recommended": "^1.0.8",
"@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"
},
"dependencies": {
"lodash": "^4.17.21",
"zod": "^3.24.1"
}
}