generated from capacitor-community/.github
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
61 lines (61 loc) · 1.36 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
{
"name": "@capacitor-community/firebase-remote-config",
"version": "0.1.3",
"description": "A native plugin for firebase remote config",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build",
"npm-publish": "np"
},
"author": "Priyank Patel <[email protected]>",
"license": "MIT",
"dependencies": {
"@capacitor/core": "latest"
},
"devDependencies": {
"@capacitor/android": "latest",
"@capacitor/ios": "latest",
"husky": "^4.2.5",
"np": "^6.2.4",
"prettier": "^2.0.5",
"prettier-plugin-java": "^0.8.0",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"dist/",
"ios/",
"android/",
"CapacitorCommunityFirebaseRemoteConfig.podspec"
],
"keywords": [
"capacitor",
"plugin",
"native"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"repository": {
"type": "git",
"url": "https://github.com/capacitor-community/firebase-remote-config"
},
"bugs": {
"url": "https://github.com/capacitor-community/firebase-remote-config/issues"
}
}