@artisan-commerce/analytics-capacitor 0.1.0-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/bundle.cjs.js +14816 -0
- package/dist/bundle.cjs.js.map +1 -0
- package/dist/bundle.d.ts +5747 -0
- package/dist/bundle.esm.js +14807 -0
- package/dist/bundle.esm.js.map +1 -0
- package/dist/bundle.umd.js +14820 -0
- package/dist/bundle.umd.js.map +1 -0
- package/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@artisan-commerce/analytics-capacitor",
|
|
3
|
+
"description": "Artisn commerce analytics capacitor library",
|
|
4
|
+
"version": "0.1.0-canary.0",
|
|
5
|
+
"main": "./dist/bundle.cjs.js",
|
|
6
|
+
"module": "./dist/bundle.esm.js",
|
|
7
|
+
"types": "./dist/bundle.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"exports": {
|
|
13
|
+
"node": {
|
|
14
|
+
"import": "./dist/bundle.esm.js",
|
|
15
|
+
"require": "./dist/bundle.cjs.js"
|
|
16
|
+
},
|
|
17
|
+
"default": "./dist/bundle.esm.js"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"compile": "rollup -c",
|
|
21
|
+
"dev": "yarn compile -w",
|
|
22
|
+
"clean": "rimraf dist",
|
|
23
|
+
"prebuild": "yarn clean",
|
|
24
|
+
"build": "yarn compile",
|
|
25
|
+
"test": "jest --watchAll --runInBand",
|
|
26
|
+
"test:all": "yarn test --watchAll=false --coverage",
|
|
27
|
+
"test:ci": "cross-env CI=true jest --runInBand",
|
|
28
|
+
"test:staged": "yarn test:ci --findRelatedTests ./src",
|
|
29
|
+
"check-types": "tsc --noEmit",
|
|
30
|
+
"lint": "eslint --ignore-path .gitignore --ignore-pattern !cypress/.eslintrc.js --ext .js,jsx,.ts,.tsx .",
|
|
31
|
+
"lint:staged": "yarn lint --max-warnings=0",
|
|
32
|
+
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|jsx|ts|tsx|json|css|scss|html)\"",
|
|
33
|
+
"format": "yarn prettier --write",
|
|
34
|
+
"check-format": "yarn prettier --list-different",
|
|
35
|
+
"validate": "cross-env CI=true npm-run-all --parallel test:ci check-types check-format lint build",
|
|
36
|
+
"validate:ci": "npm-run-all --parallel check-types check-format lint"
|
|
37
|
+
},
|
|
38
|
+
"author": "Luis Eduardo Andrade",
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@artisan-commerce/state": "0.3.0-canary.6",
|
|
42
|
+
"facebook-analytics-capacitor": "^1.0.0",
|
|
43
|
+
"snake-case": "^3.0.4"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@artisan-commerce/products": "0.9.0-canary.45",
|
|
47
|
+
"@artisan-commerce/shopping-cart": "0.12.0-canary.68",
|
|
48
|
+
"@artisan-commerce/types": "0.14.0-canary.36",
|
|
49
|
+
"@capacitor/core": "^3.6.0"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"@artisan-commerce/products": "*",
|
|
53
|
+
"@artisan-commerce/shopping-cart": "*",
|
|
54
|
+
"@capacitor/core": "^3.0.0"
|
|
55
|
+
},
|
|
56
|
+
"nx": {
|
|
57
|
+
"targets": {
|
|
58
|
+
"build": {
|
|
59
|
+
"outputs": [
|
|
60
|
+
"./dist"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"compile": {
|
|
64
|
+
"outputs": [
|
|
65
|
+
"./dist"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"test:all": {
|
|
69
|
+
"outputs": [
|
|
70
|
+
"./coverage"
|
|
71
|
+
]
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"gitHead": "cc68af5a1e959069cee7b835d367f319db416241"
|
|
76
|
+
}
|