-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 1.94 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
{
"name": "verifierjs",
"version": "0.5.2",
"description": "functions for validation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "./dist/index.umd.min.js",
"files": [
"dist/**/*"
],
"scripts": {
"commit": "git-cz",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test": "jest --config jest.config.ts --coverage ",
"watch:test": "yarn test --watch",
"watch:build": "tsc --build tsconfig.json --watch",
"prebuild": "rimraf dist",
"format": "yarn prettier --write .",
"build:main": "tsc --build tsconfig.json",
"build:umd": "webpack --output-filename index.umd.js --mode=development",
"build:umdmin": "webpack --output-filename index.umd.min.js --mode=production",
"build": "npm-run-all --parallel build:*",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "yarn format && git add . && yarn test "
}
},
"engines": {
"node": ">=10.0"
},
"keywords": [
"validate",
"validation",
"verify",
"checker",
"realtimeValidation",
"verification",
"typescript",
"form",
"verifier",
"string"
],
"author": "vakharia_heet",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vakhariaheet/verifierjs.git"
},
"bugs": {
"url": "https://github.com/vakhariaheet/verifierjs/issues"
},
"homepage": "https://github.com/vakhariaheet/verifierjs#readme",
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"codecov": "^3.8.2",
"codecov.io": "^0.1.6",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"ghooks": "^2.0.4",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"ts-jest": "^26.4.2",
"ts-loader": "^9.2.6",
"typescript": "^4.2.4",
"webpack": "^5.55.1",
"webpack-cli": "^4.8.0",
"yarn": "^1.22.15"
},
"dependencies": {}
}