-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "nuxt-podium-module",
"version": "0.0.0-development",
"main": "dist/podium.js",
"description": "Podium Podlets integration with Nuxtjs",
"repository": "https://github.com/natoehv/nuxt-podium-module",
"author": "Renato Hormazabal",
"scripts": {
"build": "yarn clean && tsc && yarn copy-files",
"test": "yarn jest",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/*.html dist/",
"lint": "eslint --ext .ts,.js",
"release": "yarn test && standard-version && yarn build && git push --follow-tags && yarn publish",
"semantic-release": "semantic-release"
},
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"@podium/browser": "^1.1.0",
"@podium/podlet": "^4.4.14",
"nuxt": "^2.15.4"
},
"devDependencies": {
"@nuxt/types": "2.15.8",
"@nuxt/typescript-build": "2.1.0",
"@nuxt/typescript-runtime": "2.1.0",
"@nuxtjs/eslint-config-typescript": "6.0.1",
"@types/jest": "26.0.24",
"copyfiles": "2.4.1",
"eslint": "7.32.0",
"jest": "26.6.3",
"jest-junit": "12.3.0",
"rimraf": "3.0.2",
"semantic-release": "17.4.7",
"standard-version": "9.5.0",
"ts-jest": "26.5.6",
"typescript": "4.9.5",
"vue": "2.6.12"
}
}