forked from veritem/valdie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.59 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
{
"name": "valdie",
"version": "0.1.4",
"description": "Modern javaScript and typescript Validator that just works",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "tsc",
"lint": "eslint . --ext .ts --fix",
"test": "vitest",
"test:coverage": "vitest --coverage",
"prepublishOnly": "tsc",
"prepare": "husky install",
"release": "bumpp package.json --commit --push --tag"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rwanda-Coding-Academy/Valdie.git"
},
"keywords": [
"validator",
"ts-validator",
"validation",
"js-validator"
],
"author": "Makuza Mugabo Verite & Patrick Niyogitare",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rwanda-Coding-Academy/Valdie/issues"
},
"homepage": "https://github.com/Rwanda-Coding-Academy/Valdie#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"c8": "^7.11.0",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "26.6.3",
"node-notifier": "10.0.0",
"prettier": "2.5.1",
"ts-jest": "26.5.6",
"typescript": "4.5.4",
"vitest": "^0.5.8"
},
"prettier": {
"semi": false,
"trailingComma": "none",
"singleQuote": true,
"printWidth": 80,
"bracketSpacing": true,
"arrowParens": "avoid"
},
"dependencies": {
"bumpp": "^8.2.1"
}
}