-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.93 KB
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
{
"name": "react-native-fit-image",
"version": "1.5.5",
"description": "Responsive image component to fit perfectly itself.",
"main": "dist/FitImage.js",
"scripts": {
"build": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"build-and-publish": "npm run build && npm publish",
"lint": "tslint {src,__tests__}/**/*.{ts,tsx}",
"prebuild": "rm -rf dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huiseoul/react-native-fit-image.git"
},
"keywords": [
"React",
"Native",
"Fit",
"Image",
"Responsive"
],
"author": "Jitae Kim <originerd@gmail.com> (http://originerd.com)",
"license": "Beerware",
"bugs": {
"url": "https://github.com/huiseoul/react-native-fit-image/issues"
},
"homepage": "https://github.com/huiseoul/react-native-fit-image#readme",
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"@types/jest": "^20.0.5",
"@types/prop-types": "^15.5.1",
"@types/react": "^16.0.2",
"@types/react-native": "^0.47.2",
"@types/react-test-renderer": "^15.5.2",
"babel-jest": "^20.0.3",
"babel-preset-react-native": "^2.1.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"react": "16.0.0-alpha.12",
"react-native": "0.47.1",
"react-test-renderer": "16.0.0-alpha.12",
"ts-jest": "^20.0.10",
"tslint": "^5.6.0",
"typescript": "^2.4.2"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/typescript"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/"
]
},
"types": "dist/FitImage.d.ts"
}