-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
{
"name": "@dreamonkey/quasar-app-extension-tracking",
"version": "0.1.2",
"description": "Provide composables to add multiple tracking scripts via Quasar Meta plugin",
"keywords": [
"quasar",
"tracking",
"facebook",
"pixel",
"google",
"analytics",
"tag manager",
"linkedin",
"insight tag"
],
"author": "Paolo Caleffi <[email protected]>",
"license": "MIT",
"main": "dist/exports.js",
"types": "dist/exports.d.ts",
"scripts": {
"build": "rimraf dist && tsc --declaration",
"install-build-clean": "yarn install && yarn build && rimraf node_modules",
"test": "echo \"No test specified\" && exit 0",
"deploy": "yarn build && yarn publish --tag latest"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/dreamonkey/quasar-app-extension-tracking"
},
"bugs": "https://github.com/dreamonkey/quasar-app-extension-tracking/issues",
"homepage": "",
"devDependencies": {
"@babel/types": "^7.15.6",
"@types/node": "^12.20.27",
"quasar": "^2.6.6",
"rimraf": "^3.0.2",
"typescript": "^4.6.4",
"vue": "^3.2.33"
},
"peerDependencies": {
"quasar": "^2.0.0",
"vue": "^3.2.0"
},
"engines": {
"node": ">= 12.2.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"publishConfig": {
"access": "public"
}
}