-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.69 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
{
"name": "kentico-kontent-nuxt-module",
"version": "1.0.0-release",
"description": "Add Kentico Kontent super power to your nuxt app",
"keywords": [
"nuxt",
"kentico",
"kontent",
"vuejs",
"nuxtjs"
],
"homepage": "https://github.com/Domitnator/kentico-kontent-nuxt-module#readme",
"bugs": {
"url": "https://github.com/Domitnator/kentico-kontent-nuxt-module/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Domitnator/kentico-kontent-nuxt-module.git"
},
"license": "ISC",
"author": "Alfred Brockotter",
"contributors": [
{
"name": "Alfred Brockotter <alfred@domitnator.nl>"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"templates"
],
"scripts": {
"build": "siroc build && mkdist --src src/runtime --dist dist/runtime --ext=js",
"lint": "eslint --ext .js,.vue,.ts .",
"semantic-release": "semantic-release",
"test": "yarn lint && jest"
},
"dependencies": {
"@kentico/kontent-delivery": "^11.0.0",
"chalk": "^4.1.0"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/plugin-transform-runtime": "latest",
"@babel/preset-env": "latest",
"@babel/preset-typescript": "latest",
"@cld-apis/types": "^0.1.3",
"@nuxt/test-utils": "latest",
"@nuxt/types": "latest",
"@nuxt/typescript-build": "^2.0.5",
"@nuxt/typescript-runtime": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@semantic-release/npm": "8.0.3",
"@types/jest": "latest",
"eslint": "latest",
"jest": "latest",
"nuxt": "latest",
"semantic-release": "^18.0.0",
"siroc": "latest",
"standard-version": "latest"
}
}