-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 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
{
"name": "useragent-plugin",
"version": "2.0.1",
"description": "Automatically attach detailed browser details to the event when $useragent property exists",
"main": "dist/index.js",
"files": [
"plugin.json",
"dist/index.js",
"README.md",
"LICENSE.md"
],
"scripts": {
"test": "jest",
"build": "rm -rf dist && esbuild src/plugin.ts --bundle --platform=node --target=node10.4 --outfile=dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"posthog",
"plugin",
"browser",
"event ingestion",
"user agent"
],
"author": "Weyert de Boer",
"repository": "https://github.com/weyert/useragentplugin",
"license": "MIT",
"devDependencies": {
"@posthog/plugin-scaffold": "^0.12.10",
"@types/jest": "^27.0.3",
"esbuild": "^0.14.6",
"esbuild-jest": "^0.5.0",
"jest": "^27.4.5",
"tslib": "^2.3.1"
},
"dependencies": {
"detect-browser": "^5.3.0"
}
}