-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "react-native-timeago",
"version": "0.5.0",
"description": "Auto-updating timeago component for React Native",
"main": "TimeAgo.js",
"typings": "./index.d.ts",
"scripts": {
"test": "jest --verbose"
},
"keywords": [
"react-native",
"timeago",
"react-component",
"react-native-component"
],
"jest": {
"preset": "jest-react-native",
"modulePathIgnorePatterns": [
"node_modules/react-native/node_modules/"
]
},
"peerDependencies": {
"moment": "^2.19.1",
"react": "^16.0.0",
"react-native": "*"
},
"author": "Tyler Hughes <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/TylerLH/react-native-timeago"
},
"license": "ISC",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.0",
"babel-jest": "^24.9.0",
"babel-preset-react-native": "^4.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-react-native": "^18.0.0",
"metro-react-native-babel-preset": "^0.57.0",
"moment": "^2.19.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-native": "^0.61.4",
"react-test-renderer": "^16.0.0",
"regenerator-runtime": "^0.13.3"
}
}