-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (69 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (69 loc) · 1.81 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
{
"name": "react-native-nextable-form",
"version": "0.0.6",
"description": "Highly customizable \"nextable\" forms for React Native",
"main": "dist/src/index",
"keywords": ["react-native", "react-native-form", "react native form", "react native next done"],
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"prepublishbak": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harisb2012/react-native-nextable-form.git"
},
"author": "harisb2012",
"license": "MIT",
"bugs": {
"url": "https://github.com/harisb2012/react-native-nextable-form/issues"
},
"homepage": "https://github.com/harisb2012/react-native-nextable-form#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
},
"transformIgnorePatterns": [
"node_modules/(?!(react-native|my-project|react-native-button)/)"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"modulePaths": [
"<rootDir>"
],
"setupFilesAfterEnv": ["./jest/setup.js"]
},
"devDependencies": {
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.23",
"@types/react-native": "^0.60.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"jest-enzyme": "^7.0.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-native": "^0.60.4",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
}
}