forked from philip-bui/react-native-animated-loading-button
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "react-native-animated-loading-button",
"version": "1.0.1",
"description": "React Native Animated Loading Button",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "jest --passWithNoTests"
},
"author": "Philip Bui",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/philip-bui/react-native-animated-loading-button.git"
},
"homepage": "https://github.com/philip-bui/react-native-animated-loading-button#readme",
"bugs": {
"url": "https://github.com/philip-bui/react-native-animated-loading-button/issues"
},
"files": [
"src"
],
"keywords": [
"react-native",
"animated",
"loading",
"button"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"eslint-config-react-native-lit": "^1.0.2",
"jest": "^26.4.2",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-native": "^0.63.2"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-native": "*"
},
"eslintConfig": {
"extends": [
"react-native-lit"
]
},
"jest": {
"preset": "react-native"
}
}