-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.97 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
{
"name": "@batch.com/react-native-plugin",
"version": "10.0.1",
"description": "Batch.com React-Native Plugin",
"homepage": "https://github.com/BatchLabs/Batch-React-Native-Plugin",
"main": "dist/Batch.js",
"types": "dist/Batch.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:BatchLabs/Batch-React-Native-Plugin.git"
},
"license": "MIT",
"keywords": [
"react-native",
"batch",
"push",
"notifications"
],
"scripts": {
"test": "jest",
"bump-version": "./scripts/bump-version.sh",
"prepare": "tsc && expo-module prepare",
"doc": "typedoc",
"doc:generate": "typedoc && touch ./docs/.nojekyll",
"doc:publish": "./scripts/deploy-doc.sh",
"doc:deploy": "yarn doc:generate && yarn doc:publish",
"format": "prettier --write \"src/**/*.{ts,js}\" \"__tests__/**/*.{ts,js}\"",
"lint": "eslint --no-fix \"src/**\"",
"lint:fail-on-warnings": "eslint \"src/**\" --no-fix --max-warnings 0",
"lint:report": "eslint --no-fix --output-file eslint_report.json --format json \"src/**\"",
"lint:errors": "eslint \"src/**\" --quiet",
"lint:fix": "eslint --fix \"src/**\" || true"
},
"peerDependencies": {
"react-native": "*"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.33",
"@types/react-native": "^0.73.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^9.7.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"expo-module-scripts": "^3.5.2",
"globals": "^15.8.0",
"jest": "^27.3.1",
"prettier": "^3.3.3",
"react-native": "^0.73.0",
"ts-jest": "^27.0.7",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
},
"codegenConfig": {
"name": "RNBatchSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.batch.batch_rn"
}
}
}