-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.41 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
{
"name": "react-native-exposure-notification-service",
"title": "React Native Exposure Notification Service",
"version": "1.2.9",
"description": "React native module providing a common interface to Apple/Google's Exposure Notification APIs",
"main": "dist/index.js",
"files": [
"dist",
"ios",
"android",
"react-native-exposure-notification-service.podspec"
],
"repository": {
"repository": {
"type": "git",
"url": "git+https://github.com/covidgreen/react-native-exposure-notification-service.git",
"baseUrl": "https://github.com/covidgreen/react-native-exposure-notification-service"
}
},
"homepage": "https://github.com/covidgreen/react-native-exposure-notification-service",
"keywords": [
"react-native",
"exposure-notification",
"contact-tracing",
"native-module"
],
"author": {
"HSE Ireland": "Health Service Executive (HSE)"
},
"contributors": [
"Colm Harte <[email protected]>",
"James M Snell <[email protected]>",
"Gar Mac Críosta <[email protected]>",
"Shaun Baker <[email protected]>",
"Paul Negrutiu <[email protected]>",
"Jack Clark <[email protected]>",
"Andrea Forni <[email protected]>",
"Jack Murdoch <[email protected]>"
],
"license": "Apache-2.0",
"readmeFilename": "README.md",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepare": "npm run build",
"test": "jest"
},
"peerDependencies": {
"react": "16.11.0",
"react-native": "0.63.3",
"react-native-permissions": "^2.1.5",
"typescript": "^3.9.6"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/react-native": "^7.1.0",
"@types/jest": "^26.0.4",
"@types/react-native": "^0.63.3",
"babel-jest": "^26.1.0",
"eslint": "^7.4.0",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react": "16.11.0",
"react-native": "0.63.3",
"react-native-permissions": "^2.1.5",
"react-test-renderer": "^16.11.0",
"ts-jest": "^26.4.4",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
}
}