-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.19 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "rnal",
"version": "0.1.1",
"description": "Small animation library for react-native'",
"main": "index.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "24.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"jest": "24.1.0",
"jest-enzyme": "^7.0.2",
"metro-react-native-babel-preset": "0.51.1",
"react": "16.6.3",
"react-dom": "^16.8.4",
"react-native": "0.58.4",
"react-test-renderer": "16.6.3",
"styled-components": "^4.1.3"
},
"keywords": [
"android",
"ios",
"react native",
"component library",
"animation",
"react-native animation"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Said Hayani",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hayanisaid/react-native-animation-library.git"
},
"bugs": {
"url": "https://github.com/hayanisaid/react-native-animation-library/issues"
},
"jest": {
"testMatch": [
"<rootDir>/Tests/**/*.js",
"**/?(*.)(spec|test).js?(x)"
],
"setupFilesAfterEnv": [
"<rootDir>__tests__/Tests-setup.js"
],
"globals": {
"baseURL": "blah"
},
"verbose": true,
"moduleDirectories": [
"node_modules",
"App"
],
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/enzyme/"
],
"preset": "react-native",
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "identity-obj-proxy",
"^image![a-zA-Z0-9$_-]+$": "GlobalImageStub",
"^[@./a-zA-Z0-9$_-]+\\.(png|gif)$": "RelativeImageStub"
},
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"setupFiles": [
"<rootDir>/_tests_/Tests-Setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|react-navigation-redux-helpers)",
"node_modules/(?!(jest-)?react-native|react-navigation|native)"
]
},
"dependencies": {}
}