-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "@fashioncloud/fun-validation",
"version": "2.0.0",
"description": "Library for validating values in a declarative and functional way",
"main": "build/lib/index.js",
"types": "build/lib/index.d.ts",
"scripts": {
"clean": "rimraf build node_modules",
"pretsc": "rimraf build",
"tsc": "tsc --pretty",
"tslint": "tslint 'lib/**/*.ts'",
"test": "npm run tslint && npm run tsc && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fashioncloud/fun-validation"
},
"keywords": [
"validation"
],
"files": [
"build/**/*.js",
"build/**/*.d.ts",
"!build/**/*.test.*"
],
"author": "FASHION CLOUD Engineering Community <engineering@fashion.cloud>",
"license": "UNLICENSED",
"engines": {
"node": ">=18.12.x <19.0.0",
"npm": ">=8.19.x"
},
"dependencies": {
"@fashioncloud/error-handling-middleware": "^5.0.2",
"@fashioncloud/validation": "^5.4.1",
"lodash": "^4.17.21",
"rimraf": "^5.0.10"
},
"devDependencies": {
"@fashioncloud/tslint-config": "^1.2.0",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.1",
"tslint": "^5.10.0",
"typescript": "^4.9"
}
}