-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.72 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@gofynd/storefront-tag-templates",
"version": "1.0.0",
"description": "Pre-configured tag templates for analytics, marketing, and tracking services on Fynd Platform storefronts",
"main": "./dist/templates.js",
"module": "./dist/templates.esm.js",
"types": "./dist/templates.d.ts",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/templates.js",
"import": "./dist/templates.esm.js",
"default": "./dist/templates.js"
},
"./dist/template": "./dist/template.js",
"./analytics": {
"require": "./src/analytics.js",
"import": "./src/analytics.js",
"default": "./src/analytics.js"
},
"./recording": {
"require": "./src/recording.js",
"import": "./src/recording.js",
"default": "./src/recording.js"
},
"./engagement": {
"require": "./src/engagement.js",
"import": "./src/engagement.js",
"default": "./src/engagement.js"
},
"./testing": {
"require": "./src/testing.js",
"import": "./src/testing.js",
"default": "./src/testing.js"
},
"./feedback": {
"require": "./src/feedback.js",
"import": "./src/feedback.js",
"default": "./src/feedback.js"
},
"./monitoring": {
"require": "./src/monitoring.js",
"import": "./src/monitoring.js",
"default": "./src/monitoring.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"analyze": "ANALYZE=true webpack --mode production",
"lint": "eslint src/**/*.js",
"format": "prettier --write \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/gofynd/fynd-storefront-tag-template.git"
},
"keywords": [
"fynd",
"storefront",
"tags",
"google-tag-manager",
"gtm",
"sentry",
"google-analytics",
"analytics",
"ecommerce",
"tracking"
],
"author": "Fynd Platform",
"license": "MIT",
"bugs": {
"url": "https://github.com/gofynd/fynd-storefront-tag-template/issues"
},
"homepage": "https://github.com/gofynd/fynd-storefront-tag-template#readme",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.51.0",
"prettier": "^3.0.3",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=14.0.0"
}
}