-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.91 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
73
74
75
76
77
78
79
80
{
"name": "react-native-cross-platform-text",
"version": "0.2.0",
"description": "Shim consolidating Android and iOS font family and font weight APIs into a single, easy-to-use, crossplatform API",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/lendup/react-native-cross-platform-text"
},
"keywords": [
"react",
"native",
"text",
"fontFamily",
"fontWeight",
"cross-platform",
"cross platform",
"android",
"ios"
],
"author": "LendUp",
"license": "Apache-2.0",
"private": false,
"scripts": {
"compile": "tsc",
"test": "jest",
"test-ci": "jest --coverage",
"updateSnapshot": "jest --updateSnapshot",
"lint": "tslint -c tslint.json 'src/**/*.ts*'",
"codecov": "codecov"
},
"files": [
"dist/*"
],
"jest": {
"preset": "react-native",
"globals": {
"ts-jest": {
"useBabelrc": true
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"resetModules": true
},
"peerDependencies": {
"react": ">=15.0.0",
"react-native": "*"
},
"devDependencies": {
"@types/jest": "23.3.1",
"@types/react": "16.4.10",
"@types/react-native": "0.56.8",
"@types/react-test-renderer": "16.0.2",
"codecov": "3.0.4",
"jest": "23.5.0",
"react": "16.4.2",
"react-addons-test-utils": "^15.6.2",
"react-native": "0.53.0",
"react-native-typescript-transformer": "^1.2.10",
"react-test-renderer": "16.0.0-beta.5",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-react": "^3.6.0",
"typescript": "^3.0.1"
}
}