-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.72 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
{
"name": "react-native-epic-spinners",
"title": "React Native Epic Spinners",
"version": "0.0.1",
"description": "Reusable React Native's implementation of epic-spinners using built-in Animated",
"main": "index.js",
"author": {
"name": "Mohammed Abdel Raouf",
"email": "[email protected]",
"website": "https://www.raouf.me"
},
"scripts": {
"test": "jest --ci --reporters=default --reporters=jest-junit",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "eslint . --ext .js,.jsx --fix",
"flow": "flow",
"checkers": "npm run lint && npm run flow && npm test"
},
"homepage": "https://github.com/muhmdraouf/react-native-epic-spinners#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MuhmdRaouf/react-native-epic-spinners.git",
"baseUrl": "https://github.com/MuhmdRaouf/react-native-epic-spinners"
},
"bugs": {
"url": "https://github.com/muhmdraouf/react-native-epic-spinners/issues"
},
"keywords": [
"react-native",
"epic spinners",
"spinners"
],
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "^16.8.1",
"react-native": ">=0.59.0-rc.0 <1.0.x"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-flow": "^7.7.4",
"@react-native-community/eslint-config": "^0.0.6",
"@react-native-community/eslint-plugin": "^1.0.0",
"@testing-library/react-hooks": "^3.2.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-flowtype": "^4.5.3",
"eslint-plugin-jest": "^23.3.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-native": "^3.8.1",
"flow-bin": "^0.115.0",
"flow-typed": "^2.6.2",
"husky": "^4.0.3",
"jest": "^24.9.0",
"jest-junit": "^10.0.0",
"prettier": "^1.19.1",
"react": "^16.8.3",
"react-native": "^0.59.10",
"react-native-testing-library": "^1.12.0",
"react-test-renderer": "^16.12.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run checkers",
"pre-push": "npm run checkers"
}
},
"jest": {
"preset": "react-native",
"verbose": true,
"timers": "fake",
"reporters": [
"default",
"jest-junit"
],
"setupFiles": [
"<rootDir>/jestSetupFile.js"
],
"modulePathIgnorePatterns": [
"Example"
]
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "test-results/jest/",
"outputName": "junit.xml",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
}
}