forked from elgorditosalsero/react-gtm-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.95 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
{
"name": "@elgorditosalsero/react-gtm-hook",
"author": "Guido Porcaro",
"repository": "https://github.com/elgorditosalsero/react-gtm-hook",
"homepage": "https://github.com/elgorditosalsero/react-gtm-hook#readme",
"keywords": [
"react hook",
"google tag manager",
"gtm",
"gtm hook",
"react"
],
"description": "Easily manage the Google Tag Manager via Hook",
"version": "2.7.2",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/react-gtm-hook.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"scripts": {
"dev": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"test:watch": "tsdx test --env=jsdom --watch",
"lint": "tsdx lint src test",
"prepare": "tsdx build"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"all-contributors-cli": "^6.20.0",
"babel-jest": "^27.5.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint-plugin-prettier": "3.4.1",
"husky": "^7.0.4",
"prettier": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2",
"react-test-renderer": "^17.0.2",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || 18"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src test"
}
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
7015
]
},
"tsConfig": "tsconfig.test.json"
}
},
"moduleDirectories": [
"node_modules",
"src"
]
},
"dependencies": {}
}