-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "@outfunnel/posthog-export-plugin",
"version": "0.2.0",
"description": "Stream event data from PostHog to Outfunnel",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf dist/*",
"compile": "rollup -c --bundleConfigAsCjs",
"prepublishOnly": "npm run build",
"test": "jest --silent",
"prepare": "husky install"
},
"files": [
"plugin.json",
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/outfunnel/posthog-export-plugin.git"
},
"author": "Outfunnel",
"license": "ISC",
"bugs": {
"url": "https://github.com/outfunnel/posthog-export-plugin/issues"
},
"homepage": "https://github.com/outfunnel/posthog-export-plugin#readme",
"devDependencies": {
"@posthog/plugin-scaffold": "^1.4.1",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.2.6",
"husky": "^8.0.3",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"msw": "^0.49.3",
"prettier": "^2.8.3",
"rimraf": "^4.1.1",
"rollup": "^3.10.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}