-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 2.21 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "altheia-async-data-validator",
"version": "5.0.15",
"description": "A very simple, fast and customizable async data validator",
"keywords": [
"validator",
"validate",
"validation",
"async",
"schema",
"valid",
"assert",
"data",
"json",
"joi"
],
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/",
"scripts": {
"lint": "eslint \"src/**\" \"test/**\"",
"test": "jest test/",
"build": "rm -rf dist/ lib/ && yarn tsc"
},
"lint-staged": {
"*.ts": [
"yarn lint"
]
},
"prettier": {
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
},
"author": "Samuel Bodin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bodinsamuel/altheia.git"
},
"bugs": {
"url": "http://github.com/bodinsamuel/altheia/issues"
},
"homepage": "https://github.com/bodinsamuel/altheia#readme",
"engines": {
"node": ">= 10.13.0",
"yarn": "^1.19.1"
},
"pre-commit": [
"lint"
],
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@codechecks/client": "0.1.12",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.1",
"@types/jest": "28.1.6",
"@types/lodash": "4.14.185",
"@types/node": "18.7.18",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"eslint": "8.23.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.8.2",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"semantic-release": "19.0.3",
"ts-jest": "28.0.7",
"typecov": "0.2.3",
"typescript": "4.7.4",
"uglifyjs-webpack-plugin": "2.2.0"
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"globals": {
"ts-jest": {
"diagnostics": false
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "[email protected]"
}