forked from hygraph/gatsby-source-graphcms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"version": "1.0.0-alpha.1",
"name": "gatsby-source-graphcms",
"description": "Gatsby source plugin for building websites using the GraphCMS as a data source.",
"keywords": [
"data",
"gatsby",
"gatsby-plugin",
"graphcms",
"graphql",
"source"
],
"homepage": "https://github.com/GraphCMS/gatsby-source-graphcms",
"repository": {
"type": "git",
"url": "https://github.com/GraphCMS/gatsby-source-graphcms.git"
},
"bugs": {
"url": "https://github.com/GraphCMS/gatsby-source-graphcms/issues"
},
"license": "MIT",
"author": "Angel Piscola <angelpiscola@gmail.com>",
"deprecated": false,
"main": "index.js",
"scripts": {
"test": "yarn lint && jest",
"build": "yarn test && babel src --out-dir . --ignore __tests__",
"watch": "babel -w src --out-dir . --ignore __tests__",
"lint": "xo --fix",
"prepare": "cross-env NODE_ENV=production npm run build"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"cross-env": "5.1.4",
"jest": "22.4.3",
"jest-cli": "22.4.3",
"xo": "0.20.3"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"graphql-request": "^1.5.1",
"pluralize": "^7.0.0",
"ramda": "^0.25.0"
},
"xo": {
"space": true,
"quotes": "backtick",
"parser": "babel-eslint",
"overrides": [
{
"files": "src/__tests__/*.js",
"env": [
"jest"
]
}
]
},
"renovate": {
"extends": [
"config:base",
"docker:disable"
],
"labels": [
"renovate"
],
"assignees": [
"rdela"
],
"devDependencies": {
"schedule": [
"on the first day of the month"
],
"automerge": true,
"major": {
"automerge": false
}
},
"enabledManagers": ["npm"]
}
}