forked from lucasbento/react-native-thumbnail-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.25 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
53
{
"name": "react-native-thumbnail-video",
"description": "Easily show thumbnails for videos",
"version": "0.1.1",
"author": {
"name": "Lucas Bento",
"email": "[email protected]",
"url": "https://github.com/lucasbento"
},
"bugs": "https://github.com/lucasbento/react-native-thumbnail-video/issues",
"homepage": "https://github.com/lucasbento/react-native-thumbnail-video#readme",
"license": "MIT",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "http://github.com/lucasbento/react-native-thumbnail-video"
},
"keywords": [
"react-native",
"youtube",
"video",
"thumbnail"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch"
},
"jest": {
"automock": false,
"globals": {
"__DEV__": true
},
"modulePathIgnorePatterns": [
"<rootDir>/example/*"
],
"modulePaths": [
"<rootDir>/src/**/*.test.js"
],
"preset": "react-native"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-preset-react-native": "^4.0.0",
"jest": "^21.2.1",
"react-test-renderer": "^16.1.1",
"react": "> 15.0.0",
"react-native": "> 0.40.3"
},
"peerDependencies": {
"react": "> 15.0.0",
"react-native": "> 0.40.3"
}
}