-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
{
"name": "add-utm-params",
"version": "1.0.0",
"description": "Add UTM parameters to URLs. Designed for news publications with online and email placements.",
"main": "dist/index.html",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"serve": "http-server dist",
"test": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"test-watch": "node --experimental-vm-modules node_modules/.bin/jest --coverage --watch",
"publish": "cd dist && surge && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/spaceaardvark/add-utm-params.git"
},
"author": "Space Aardvark",
"license": "MIT",
"bugs": {
"url": "https://github.com/spaceaardvark/add-utm-params/issues"
},
"homepage": "https://github.com/spaceaardvark/add-utm-params#readme",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"eslint": "^7.13.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"http-server": "^0.12.3",
"jest": "^26.6.3"
},
"dependencies": {
"htm": "^3.0.4",
"preact": "^10.5.7",
"react-hook-form": "^6.11.3",
"rollup": "^2.33.3",
"rollup-plugin-terser": "^7.0.2"
}
}