forked from PostHog/timestamp-parser-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 954 Bytes
/
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
{
"name": "timestamp-parser-plugin",
"version": "0.0.1",
"description": "Parse your event timestamps into useful date properties.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/PostHog/timestamp-parser-plugin.git"
},
"author": "Yakko Majuri",
"license": "MIT",
"bugs": {
"url": "https://github.com/PostHog/timestamp-parser-plugin/issues"
},
"homepage": "https://github.com/PostHog/timestamp-parser-plugin#readme",
"scripts": {
"test": "./node_modules/.bin/jest"
},
"devDependencies": {
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"@posthog/plugin-scaffold": "^0.2.7",
"jest": "^26.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,json,yml}": "prettier --write"
}
}