-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "fogex",
"version": "0.0.28",
"description": "A JavaScript library for quickly and easily testing the validity or invalidity of a value.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node index",
"test": "jest",
"build": "tsc",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\"",
"pre-publish": "npm run build",
"coverage": "jest --coverage"
},
"lint-staged": {
"**/*.{js,json}": [
"prettier --write ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"regex",
"regular expression"
],
"repository": {
"type": "git",
"url": "git:github.com/fogex-js/fogex.git"
},
"engines": {
"node": ">=16.x"
},
"author": "ymzEmre",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.2.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}