forked from BatchLabs/Batch-React-Native-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.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
{
"name": "@batch.com/react-native-plugin",
"version": "8.1.2",
"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": "git@github.com: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": {
"@types/jest": "^27.0.2",
"@types/react": "^17.0.33",
"@types/react-native": "^0.66.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"expo-module-scripts": "^2.0.0",
"jest": "^27.3.1",
"prettier": "^1.14.2",
"react-native": "^0.66.1",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.7",
"typescript": "^4.7.2"
}
}