-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
50
51
{
"name": "@blackbox-vision/gatsby-source-google-analytics-api-most-read-posts",
"version": "1.0.1",
"description": "Pull your most read posts from google analytics",
"main": "gatsby-node.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlackBoxVision/gatsby-source-analytics-most-read-posts.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"gatsby-source-google-analytics-api-most-read-posts",
"google-analytics"
],
"author": "Jonatan E. Salas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlackBoxVision/gatsby-source-analytics-most-read-posts/issues"
},
"homepage": "https://github.com/BlackBoxVision/gatsby-source-analytics-most-read-posts#readme",
"dependencies": {
"googleapis": "^48.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
],
"*.{js,ts,tsx}": [
"git add"
]
}
}