This repository has been archived by the owner on Mar 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "@meeg/gridsome-source-kentico-kontent",
"version": "0.5.0",
"description": "Kentico Kontent data source plugin for Gridsome.",
"author": "Chris Meagher",
"license": "MIT",
"homepage": "https://github.com/CMeeg/gridsome-source-kentico-kontent#readme",
"repository": "https://github.com/CMeeg/gridsome-source-kentico-kontent.git",
"main": "src/index.js",
"keywords": [
"gridsome",
"gridsome-plugin",
"gridsome-source",
"kentico-kontent",
"kontent"
],
"files": [
"src/*.js"
],
"dependencies": {
"@kentico/kontent-delivery": "^7.1.0",
"@sindresorhus/slugify": "^0.9.1",
"change-case": "^3.1.0",
"cheerio": "^1.0.0-rc.3",
"debug": "^4.1.1",
"lodash": "^4.17.20",
"rxjs": "^6.5.3"
},
"peerDependencies": {
"gridsome": "~0.7.8"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"genversion": "^2.2.1",
"standard-version": "^8.0.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.3"
},
"scripts": {
"lint": "eslint ./src",
"build": "genversion ./src/genversion.js -s && yarn run lint",
"release": "standard-version"
},
"standard-version": {
"skip": {
"tag": true,
"commit": true
}
}
}