-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.92 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
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
{
"name": "react-simple-form-validator",
"version": "0.3.0",
"description": "Simple React JS library to validate form fields",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"test": "jest",
"test:watch": "jest --watch",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perscrew/react-simple-form-validator.git"
},
"keywords": [
"react",
"javascript",
"typescript"
],
"author": "Thibaud Dervily",
"license": "ISC",
"bugs": {
"url": "https://github.com/perscrew/react-simple-form-validator/issues"
},
"homepage": "https://github.com/perscrew/react-simple-form-validator#readme",
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1",
"dayjs": ">=1.10.7"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.16.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.6",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"babel-jest": "^27.0.6",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^1.1.6",
"dayjs": "^1.10.7",
"enzyme": "^3.11.0",
"jest": "^27.0.6",
"jsdom": "^9.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.0",
"react-test-renderer": "^17.0.2",
"typescript": "^4.4.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}