generated from PostHog/posthog-plugin-advanced-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "posthog-plugin-hello-world",
"displayName": "Hello World",
"version": "1.0.0",
"description": "Greet the world with every PostHog event!",
"keywords": [
"posthog",
"plugin"
],
"main": "dist/index.js",
"repository": "github:PostHog/posthog-plugin-hello-world",
"bugs": {
"url": "https://github.com/PostHog/posthog-plugin-hello-world/issues"
},
"homepage": "https://github.com/PostHog/posthog-plugin-hello-world#readme",
"author": "PostHog <[email protected]>",
"license": "MIT",
"configSchema": {
"greeting": {
"name": "What greeting would you like to use?",
"type": "string",
"default": "Hello world!",
"required": false
}
},
"scripts": {
"test": "jest src",
"build": "npm run clean && npm run compile",
"clean": "rimraf dist/*",
"purge": "rimraf dist node_modules",
"compile": "tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run test && npm run build"
},
"devDependencies": {
"@posthog/plugin-scaffold": "0.2.8-alpha.2",
"@types/jest": "^26.0.19",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.0.0",
"husky": "~4.3.6",
"jest": "^26.6.3",
"lint-staged": "~10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,yaml,toml,css,scss,html,xml}": "prettier --write",
"*.{ts,tsx}": "tsc --noEmit"
}
}