forked from kelvinmaues/react-hubspot-tracking-code-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "react-hubspot-tracking-code-hook",
"author": "Kelvin Maues <[email protected]>",
"version": "1.2.2",
"repository": "https://github.com/kelvinmaues/react-hubspot-tracking-code-hook",
"homepage": "https://github.com/kelvinmaues/react-hubspot-tracking-code-hook#readme",
"license": "MIT",
"keywords": [
"react",
"react hook",
"hubspot",
"hubspot hook",
"hubspot tracking code",
"tracking code",
"hubspot tracking code hook",
"react hubspot tracking code hook"
],
"description": "The HubSpot tracking code function as a hook to use in your React project (SPA) with all the functions available in the HubSpot Tracking code API documentation.",
"main": "dist/index.js",
"module": "dist/react-hubspot-tracking-code-hook.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "tsdx watch",
"build": "tsdx build",
"prepare": "tsdx build",
"lint": "tsdx lint src",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.8",
"all-contributors-cli": "^6.19.0",
"husky": "^4.3.0",
"lint": "^0.7.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src"
}
}
}