-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.55 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.55 KB
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
{
"name": "vsf-lexascms",
"version": "0.4.3",
"description": "Official LexasCMS module for Vue Storefront (Next).",
"keywords": [
"vue-storefront",
"vue-storefront-next",
"lexascms"
],
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"server": "server/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/LexasCMS/vsf-next-lexascms.git"
},
"scripts": {
"build": "yarn run rollup -c",
"prepublishOnly": "yarn build",
"test": "yarn run jest"
},
"license": "MIT",
"author": "LexasCMS (https://www.lexascms.com)",
"dependencies": {
"axios": "^0.21.1",
"base-64": "^1.0.0",
"jsona": "^1.8.0",
"qs": "^6.9.4"
},
"devDependencies": {
"@types/base-64": "^0.1.3",
"@types/jest": "^26.0.15",
"@types/qs": "^6.9.4",
"@vue-storefront/core": "^2.3.0-rc.1",
"jest": "^26.6.3",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
"rollup": "^2.33.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5",
"vue": "^2.6.12"
},
"peerDependencies": {
"@vue-storefront/core": "^2.3.0-rc.1"
},
"files": [
"dist/**/*",
"nuxt/**/*",
"server/**/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
}
}
}