forked from pocesar/react-native-stager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "react-native-stager",
"version": "1.0.4",
"description": "A performant wizard-like multi stages component for React Native without a router",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "npm run compile && npm run compile-tests && jest",
"compile-tests": "tsc -p tsconfig-base.json",
"snapshots": "jest --updateSnapshot",
"compile": "tsc -p tsconfig.json",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pocesar/react-native-stager.git"
},
"keywords": [
"react-native",
"react",
"react-native-component",
"wizard",
"performant",
"wizard-steps"
],
"author": "Paulo Cesar <https://github.com/pocesar>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pocesar/react-native-stager/issues"
},
"homepage": "https://github.com/pocesar/react-native-stager#readme",
"dependencies": {
"@types/react": "^16.8.23",
"@types/react-native": "^0.60.2"
},
"peerDependencies": {
"react-native": "*",
"react": "*",
"prop-types": "*",
"@types/react-native": "*",
"@types/react": "*",
"@types/prop-types": "*"
},
"devDependencies": {
"@types/jest": "^21.1.9",
"@types/react-test-renderer": "^16.0.0",
"babel-preset-react-native": "^4.0.0",
"jest": "^22.0.4",
"react-test-renderer": "^16.2.0",
"typescript": "^2.6.2"
},
"jest": {
"preset": "react-native",
"collectCoverage": true,
"collectCoverageFrom": [
"lib/index.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/react-native/Libraries/react-native/",
"<rootDir>/node_modules/react-native/packager/",
"<rootDir>/example/"
]
}
}