forked from plaid/react-native-plaid-link-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1009 Bytes
/
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
{
"name": "react-native-plaid-link-sdk",
"version": "5.0.0",
"description": "React Native Plaid Link SDK",
"main": "index.js",
"scripts": {
"lint": "eslint \"./**/*.{js,jsx}\" --fix",
"prettier": "prettier \"./**/*.{js,jsx}\" --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react-native",
"Plaid"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"author": "Plaid",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.1",
"react-native": "^0.61.3"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"react": "^16.8.1",
"react-native": "^0.61.3",
"xyz": "0.5.x"
}
}