-
-
Notifications
You must be signed in to change notification settings - Fork 308
/
package.json
44 lines (44 loc) · 1.55 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
{
"name": "cordova-plugin-firebase-analytics",
"version": "8.0.0",
"description": "Cordova plugin for Firebase Analytics",
"types": "./types/index.d.ts",
"cordova": {
"id": "cordova-plugin-firebase-analytics",
"platforms": [
"ios",
"android"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/chemerisuk/cordova-plugin-firebase-analytics.git"
},
"author": "Maksim Chemerisuk <[email protected]> (https://github.com/chemerisuk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/chemerisuk/cordova-plugin-firebase-analytics/issues"
},
"homepage": "https://github.com/chemerisuk/cordova-plugin-firebase-analytics#readme",
"funding": "https://github.com/chemerisuk/cordova-plugin-firebase-analytics?sponsor=1",
"keywords": [
"cordova",
"firebase",
"analytics",
"ecosystem:cordova",
"cordova-android",
"cordova-ios"
],
"scripts": {
"preversion": "npm run docs && rm -rf docs",
"version": "perl -i -pe 's/(version=)\"\\d+\\.\\d+\\.\\d+\"/$1\"'$npm_package_version'\"$2/' plugin.xml && git add .",
"postversion": "git push && git push --tags",
"predocs": "tsc www/* --declaration --allowJs --checkJs --lib es2015,dom --emitDeclarationOnly --outDir types",
"docs": "typedoc && perl -i -pe 's/README.md#/#/g' ./docs/README.md",
"postdocs": "perl -i -0pe 's/(<!-- TypedocGenerated -->).*/$1\n\n/gms' README.md && cat ./docs/README.md >> README.md"
},
"devDependencies": {
"typedoc": "^0.23.9",
"typedoc-plugin-markdown": "^3.13.4"
}
}