-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.31 KB
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
{
"name": "@formspark/formtrack",
"description": "Automatically inject UTM parameters into your HTML form submissions",
"private": false,
"version": "0.1.36",
"author": "Bjorn Krols (https://formspark.io)",
"license": "MIT",
"keywords": [
"form",
"formspark",
"utm"
],
"homepage": "https://github.com/formspark/formtrack#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/formspark/formtrack.git"
},
"bugs": {
"url": "https://github.com/formspark/formtrack/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "webpack --mode production --progress",
"format": "prettier --write . --ignore-path .gitignore",
"prepare": "husky install",
"test": "jest",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"jest-environment-jsdom": "^28.1.3",
"url-search-params-polyfill": "^8.2.5"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"husky": "^8.0.3",
"jest": "^28.1.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"ts-jest": "^28.0.8",
"ts-loader": "^9.5.0",
"tslib": "^2.6.2",
"typescript": "^4.9.5",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0"
}
}