-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.57 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
{
"name": "utm-params-saver",
"version": "1.5.0",
"description": "This is a typescript package that will allow you to save and restore UTM params if needed.",
"main": "lib/index.js",
"scripts": {
"test": "jest ./tests",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szymansd/utm-params.git"
},
"keywords": [
"utm",
"parametes",
"web",
"attribution"
],
"author": "Dominik Szymanski",
"license": "MIT",
"bugs": {
"url": "https://github.com/szymansd/utm-params/issues"
},
"homepage": "https://github.com/szymansd/utm-params#readme",
"devDependencies": {
"@babel/cli": "^7.10.0",
"@babel/core": "^7.7.7",
"@babel/plugin-transform-instanceof": "^7.10.1",
"@babel/plugin-transform-object-assign": "^7.10.1",
"@babel/preset-env": "^7.7.7",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"babel-jest": "^28.0.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"jest": "^28.0.0",
"jest-environment-jsdom": "^28.0.0",
"jest-localstorage-mock": "^2.4.21"
},
"jest": {
"resetMocks": false,
"verbose": true,
"setupFiles": [
"jest-localstorage-mock"
]
},
"babel": {
"plugins": [
"@babel/plugin-transform-object-assign",
"@babel/plugin-transform-instanceof"
],
"presets": [
[
"@babel/preset-env"
]
]
},
"dependencies": {
"typescript": "^4.9.5"
}
}