-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.1 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
{
"name": "use-utm-parameters",
"version": "0.2.0",
"description": "A React Hook to deal with UTM Parameters for marketing campaigns",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "ava",
"test-watch": "ava --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/djalmaaraujo/use-utm-parameters.git"
},
"keywords": [
"react",
"hook",
"typescript",
"utm",
"utm-parameters",
"utm-params"
],
"author": "Djalma Araujo",
"license": "MIT",
"bugs": {
"url": "https://github.com/djalmaaraujo/use-utm-parameters/issues"
},
"homepage": "https://github.com/djalmaaraujo/use-utm-parameters#readme",
"devDependencies": {
"@ava/typescript": "^5.0.0",
"ava": "^6.1.3",
"typescript": "^5.4.5"
},
"ava": {
"typescript": {
"extensions": [
"ts",
"tsx"
],
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
}
}