-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 1.56 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": "react-native-password-strength-meter",
"version": "0.0.4",
"description": "A highly customisable password strength meter implementation with minimal dependencies.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"lint": "eslint . --ignore-path .gitignore --ext .js --ext .jsx",
"fix-lint": "yarn lint -- --fix",
"prepush": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pritishvaidya/react-native-password-strength-meter.git"
},
"keywords": [
"react-native",
"password",
"password-strength",
"password-meter",
"react-native-password-strength-meter"
],
"author": "Pritish Vaidya ",
"license": "MIT",
"bugs": {
"url": "https://github.com/pritishvaidya/react-native-password-strength-meter/issues"
},
"homepage": "https://github.com/pritishvaidya/react-native-password-strength-meter#readme",
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-react-native": "^4.0.1",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.3.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.1.0"
},
"peerDependencies": {
"react": "^16.5.2",
"react-native": "^0.57.1"
},
"dependencies": {
"prop-types": "^15.6.2",
"react-native-speedometer": "^1.0.0"
}
}