This repository has been archived by the owner on Sep 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "@notifee/react-native",
"version": "3.0.0",
"author": "Invertase <[email protected]> (http://invertase.io)",
"description": "Notifee - a feature rich notifications library for React Native.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"validate:all:js": "eslint . --ext .js,.jsx,.ts,.tsx",
"validate:all:ts": "tsc --project ./",
"build": "genversion --es6 --semi src/version.ts && tsc",
"build:clean": "rimraf android/libs && rimraf android/build && rimraf ios/build && rimraf dist",
"build:watch": "tsc --watch",
"prepare": "yarn run build",
"prepublishOnly": "cd ../.. && yarn run build:core",
"format:android": "google-java-format --replace -i $(find . -type f -name \"*.java\")",
"format:ios": "npx clang-format -i --glob=\"*/**/*.{h,cpp,m,mm}\" --style=Google",
"gen-docs": "path-exists ../../docs && typedoc src/index.ts src/types/*.ts src/NotifeeApiModule.ts --out \"../../docs/docs-md\" || echo \"FAILED: gen-docs command only available running package as submodule of notifee.\" "
},
"devDependencies": {
"@types/react-native": "0.64.10",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"genversion": "^3.0.0",
"path-exists-cli": "^2.0.0",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"typedoc": "^0.21.5",
"typedoc-plugin-markdown": "^3.10.4",
"typescript": "^4.3.2"
},
"peerDependencies": {
"react-native": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/notifee/react-native-notifee"
},
"license": "Apache-2.0",
"keywords": [
"react",
"react-native",
"scheduling",
"channels",
"android",
"ios",
"firebase",
"fcm",
"notifee",
"notifications",
"onesignal"
],
"publishConfig": {
"access": "public"
}
}