-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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
{
"name": "@gtm-support/core",
"version": "3.0.1",
"description": "Core implementation for Google Tag Manager support",
"scripts": {
"clean": "rimraf coverage .eslintcache lib pnpm-lock.yaml node_modules",
"build": "tsup-node",
"format": "prettier --cache --write .",
"lint": "eslint --cache --cache-strategy content --report-unused-disable-directives .",
"ts-check": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build",
"preflight": "pnpm install && run-s format lint ts-check build test"
},
"type": "module",
"files": [
"lib"
],
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"keywords": [
"gtm",
"google-tag-manager",
"googletagmanager",
"google"
],
"author": {
"name": "Christopher Quadflieg",
"email": "chrissi92@hotmail.de",
"url": "https://github.com/Shinigami92"
},
"repository": {
"type": "git",
"url": "https://github.com/gtm-support/core.git"
},
"bugs": "https://github.com/gtm-support/core/issues",
"license": "MIT",
"devDependencies": {
"@eslint-types/jsdoc": "~48.2.2",
"@eslint-types/prettier": "~5.1.3",
"@eslint-types/typescript-eslint": "~7.5.0",
"@types/node": "~20.12.12",
"@typescript-eslint/eslint-plugin": "~7.10.0",
"@typescript-eslint/parser": "~7.10.0",
"@vitest/coverage-v8": "~1.6.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-define-config": "~2.1.0",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-jsdoc": "~48.2.6",
"eslint-plugin-prettier": "~5.1.3",
"eslint-plugin-spellcheck": "~0.0.20",
"jsdom": "~24.1.0",
"npm-run-all2": "~6.2.0",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "~3.2.4",
"rimraf": "~5.0.7",
"tsup": "~8.0.2",
"typescript": "~5.4.5",
"vitest": "~1.6.0"
},
"packageManager": "pnpm@9.1.2"
}