forked from TaylorBriggs/react-native-typewriter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.72 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
{
"name": "@salesp07/react-native-typewriter",
"version": "0.7.2",
"description": "A React Native component for creating typing effects",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/salesp07/react-native-typewriter.git"
},
"keywords": [
"react",
"react-native",
"component",
"animated",
"typing",
"typewriter"
],
"author": "Taylor Briggs <taylor.briggs.dev@gmail.com> (https://taylor-briggs.com)",
"contributors": [
"Ian Dilling <ianbjorndilling@gmail.com>",
"Peter Mikitsh <peter.mikitsh@gmail.com>",
"maxkomarychev (https://github.com/maxkomarychev)",
"Przemek Sobstel <przemek@sobstel.org> (http://www.sobstel.org)",
"Pedro Muniz <https://salesp07.github.io>"
],
"dependencies": {
"prop-types": "^15.5.7"
},
"peerDependencies": {
"react": ">=15.4.x",
"react-native": ">=0.41.x"
},
"devDependencies": {
"babel-eslint": "10.0.1",
"babel-jest": "24.1.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.10.0",
"eslint": "5.15.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.3.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"jest": "24.1.0",
"jest-enzyme": "7.0.1",
"jsdom": "13.2.0",
"pre-commit": "1.2.2",
"react": "16.11.0",
"react-dom": "16.8.3",
"react-native": "0.62"
},
"scripts": {
"lint": "eslint **/*.js",
"test": "exit 0"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"<rootDir>setup-tests.js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
}
}