-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
61 lines (61 loc) · 1.78 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
{
"name": "@fika/gatsby-source-cockpit",
"version": "1.1.2",
"description": "This is a Gatsby version 2.x.x source plugin that feeds the GraphQL tree with Cockpit Headless CMS collections and singletons data. Actually, it supports querying raw texts (and any trivial field types), Markdown, images, galleries, assets, sets, repeaters, layout(-grid)s (currently only without nested images/assets), objects, linked collections and internationalization.",
"main": "gatsby-node.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"cockpit",
"headless-cms",
"fika",
"productions"
],
"author": "Fika Productions <[email protected]>",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/fikaproductions/fika-gatsby-source-cockpit.git"
},
"bugs": {
"url": "https://github.com/fikaproductions/fika-gatsby-source-cockpit/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"homepage": "https://github.com/fikaproductions/fika-gatsby-source-cockpit",
"dependencies": {
"gatsby-node-helpers": "^0.3.0",
"gatsby-source-filesystem": "^2.0.5",
"mime": "^2.3.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"html-to-react": "^1.3.4",
"react-styling": "^1.6.4",
"sanitize-html": "^1.20.0",
"slugify": "^1.3.4",
"string-hash": "^1.1.3"
},
"devDependencies": {
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "1.16.0"
},
"peerDependencies": {
"gatsby": "2.x",
"gatsby-source-filesystem": "2.x",
"react": ">16"
}
}