-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "reinput",
"version": "3.7.2",
"description": "A React Native TextInput with material style 😎",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sospedra/reinput.git"
},
"keywords": [
"react-native",
"input",
"animation",
"TextInput",
"material-design",
"material"
],
"files": [
"src/*"
],
"bugs": {
"url": "https://github.com/sospedra/reinput/issues"
},
"author": "Ruben Sospedra",
"license": "MIT",
"homepage": "https://github.com/sospedra/reinput#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5"
},
"scripts": {
"precommit": "npm test",
"test:lint": "eslint src",
"test": "npm run test:lint"
}
}