-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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": "@jeroen.bakker/just-attribute",
"version": "0.4.5",
"description": "Realtime privacy-conscious marketing attribution for the web",
"author": "Jeroen Bakker",
"license": "MIT",
"scripts": {
"build": "npm run esbuild && npm run tsc",
"esbuild": "esbuild src/*.ts src/*/*.ts --outdir=dist --bundle --format=esm --minify",
"tsc": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {},
"devDependencies": {
"@jest/globals": "^29.6.1",
"esbuild": "^0.17.19",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JeroenBakker/just-attribute.git"
},
"keywords": [
"attribution"
],
"bugs": {
"url": "https://github.com/JeroenBakker/just-attribute/issues"
},
"homepage": "https://github.com/JeroenBakker/just-attribute#readme"
}