-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
84 lines (84 loc) · 2.47 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
{
"name": "react-native-exposure-notification-service",
"title": "React Native Exposure Notification Service",
"version": "1.4.4",
"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 <colm.harte@nearform.com>",
"James M Snell <jasnell@gmail.com>",
"Gar Mac Críosta <gar.maccriosta@hse.ie>",
"Shaun Baker <shaun.baker@nearform.com>",
"Paul Negrutiu <paul.negrutiu@nearform.com>",
"Jack Clark <jack.clark@nearform.com>",
"Andrea Forni <andrea.forni@nearform.com>",
"Jack Murdoch <jack.murdoch@nearform.com>"
],
"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 && husky install",
"test": "jest"
},
"peerDependencies": {
"react": "17.0.2",
"react-native": "0.63.3",
"react-native-permissions": "^2.1.5",
"typescript": "^4.2.4"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/react-hooks": "^5.1.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": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.0.5",
"react": "17.0.2",
"react-native": "0.63.3",
"react-native-permissions": "^2.1.5",
"react-test-renderer": "16.14.0",
"ts-jest": "^26.4.4",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"dependencies": {
"user": "^0.0.0"
}
}