-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "react-native-form-validator",
"version": "0.5.0",
"description": "React native library to validate form fields",
"main": "src/index.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"test:watch": "jest --watch",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perscrew/react-native-form-validator.git"
},
"keywords": [
"react-native",
"react",
"javascript"
],
"author": "Thibaud Dervily",
"license": "ISC",
"bugs": {
"url": "https://github.com/perscrew/react-native-form-validator/issues"
},
"homepage": "https://github.com/perscrew/react-native-form-validator#readme",
"dependencies": {
"moment": "^2.11.2",
"prop-types": "15.6.0"
},
"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",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^27.0.1",
"babel-jest": "^27.0.6",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^1.1.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"jest": "^27.0.6",
"jsdom": "^9.4.1",
"metro-react-native-babel-preset": "^0.66.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-native": "^0.65.1",
"react-test-renderer": "^17.0.2"
},
"jest": {
"preset": "react-native"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}