-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.07 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
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
{
"name": "gtm-event-tracker",
"author": {
"name": "Nicolas Jardim",
"email": "nicolasemkis@gmail.com"
},
"license": "MIT",
"version": "0.0.0-semantically-released",
"description": "A tiny, type-safe and zero-dependency solution for triggering Google Tag Manager track events.",
"keywords": [
"gtm",
"tracking",
"google-tag-manager",
"analytics"
],
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/gtm-event-tracker.d.ts",
"repository": "git@github.com:emkis/gtm-event-tracker.git",
"files": [
"dist/cjs/index.js",
"dist/es/index.js",
"dist/gtm-event-tracker.d.ts"
],
"scripts": {
"prepare": "husky install",
"prepare:publish": "yarn tsx ./scripts/clean-package-json.ts",
"clean": "rimraf dist* temp coverage *.tsbuildinfo",
"dev": "npm-run-all clean 'build:ts --watch'",
"build": "npm-run-all clean build:ts build:types",
"build:ts": "rollup --config rollup.config.mjs",
"build:types": "npm-run-all ts:compile ts:replace-alias",
"lint": "eslint . --ext js,ts",
"test": "npm-run-all test:api-report test:unit:coverage",
"test:unit": "jest",
"test:unit:coverage": "npm-run-all 'test:unit --coverage'",
"test:api-report": "npm-run-all build api-report",
"test:api-report:update": "npm-run-all build 'api-report --local'",
"api-report": "api-extractor run",
"ts:compile": "tsc --project tsconfig.build.json",
"ts:replace-alias": "tsc-alias --project tsconfig.build.json"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@faker-js/faker": "^7.6.0",
"@microsoft/api-extractor": "^7.34.5",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"esbuild": "^0.17.18",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"rimraf": "^5.0.0",
"rollup": "^3.21.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-size": "^0.3.1",
"semantic-release": "^20.1.3",
"tsc-alias": "^1.8.6",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
}
}