forked from DylanVann/react-native-fast-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.08 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "react-native-fast-image",
"version": "8.1.5",
"description": "🚩 FastImage, performant React Native image component.",
"keywords": [
"cache",
"cached",
"fastimage",
"image",
"priority"
],
"homepage": "https://github.com/DylanVann/react-native-fast-image#readme",
"bugs": {
"url": "https://github.com/DylanVann/react-native-fast-image/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DylanVann/react-native-fast-image.git"
},
"license": "(MIT AND Apache-2.0)",
"author": "Dylan Vann <[email protected]> (https://dylanvann.com)",
"main": "dist/index.js",
"module": "dist/react-native-fast-image.esm.js",
"typings": "dist/index.d.ts",
"files": [
"android",
"!android/build",
"ios",
"!ios/build",
"dist",
"RNFastImage.podspec"
],
"scripts": {
"build": "tsdx build && cp src/index.js.flow dist/index.js.flow",
"commit": "git-cz",
"lint": "tsdx lint src",
"semantic-release": "semantic-release",
"test": "jest ./src/*.tsx"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
},
"jest": {
"modulePathIgnorePatterns": [
"ReactNativeFastImageExample*",
"ReactNativeFastImageExampleServer*"
],
"preset": "react-native"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/react": "^16.9.23",
"@types/react-native": "^0.61.17",
"babel-jest": "^24.9.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.19.1",
"prettier-check": "^2.0.0",
"react": "16.9.0",
"react-native": "0.61.5",
"react-test-renderer": "16.9.0",
"semantic-release": "^17.0.4",
"tsdx": "^0.12.3",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "^16.8.6",
"react-native": "^0.60.0"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}