This repository was archived by the owner on Jan 26, 2024. It is now read-only.
-
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.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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": "@capraconsulting/validation-utils-js",
"version": "0.0.0-development",
"description": "Utils for valdiation of input fields",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "rimraf es dist && rollup -c",
"test": "jest --coverage src",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prettier": "prettier --config ./.prettierrc --write 'src/**/*.ts'",
"prepack": "npm run build",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/capralifecycle/validation-utils-js"
},
"homepage": "https://github.com/capralifecycle/validation-utils-js",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "18.5.0",
"@commitlint/config-conventional": "18.5.0",
"@types/jest": "29.5.11",
"@types/jest-each": "0.3.4",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-each": "29.7.0",
"prettier": "3.2.4",
"rimraf": "5.0.5",
"rollup": "4.9.6",
"rollup-plugin-typescript2": "0.36.0",
"semantic-release": "22.0.12",
"ts-jest": "29.1.2",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"typescript": "5.3.3"
}
}