-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.43 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.43 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@sirenapp/react-native-inbox",
"version": "1.1.0",
"description": "React Native SDK tailored for creating and managing in-app notification inboxes.",
"main": "dist/module/index",
"types": "dist/typescript/index.d.ts",
"react-native": "dist/module/index",
"module": "dist/module/index",
"source": "dist/module/index",
"repository": {
"type": "git",
"url": "git+https://github.com/KeyValueSoftwareSystems/siren-react-native-inbox.git"
},
"keywords": [
"react-native",
"siren",
"in-app",
"react",
"notifications"
],
"author": "KeyValue Software Systems",
"license": "MIT",
"bugs": {
"url": "https://github.com/KeyValueSoftwareSystems/siren-react-native-inbox/issues"
},
"homepage": "https://github.com/KeyValueSoftwareSystems/siren-react-native-inbox#readme",
"scripts": {
"prepare": "husky",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"build": "bob build",
"test-build": "npm run build && npm pack && mv sirenapp-react-native-inbox-0.0.1.tgz example/siren-sdk01.tgz && cd example && npm install",
"test": "npx jest",
"coverage": "npm run test -- --coverage"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.4.3",
"@types/jest": "^29.5.12",
"@types/pubsub-js": "^1.8.6",
"@types/react": "^18.2.57",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"react": "^18.2.0",
"react-native": "^0.73.4",
"react-native-builder-bob": "^0.23.2",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.59.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
[
"module",
{
"sourceMaps": false
}
],
"typescript"
]
},
"files": [
"./dist",
"license",
"readme"
],
"dependencies": {
"pubsub-js": "^1.9.4",
"@sirenapp/js-sdk": "^1.1.0"
}
}