-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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": "@bounteous/vue-storefront-aem",
"version": "0.0.1",
"description": "Adobe Experience Manager integration with Vue Storefront",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"server": "server/index.js",
"scripts": {
"build": "rollup -c && rm -r -- ./server/*/",
"build:clean": "rollup -c && rm -r -- ./lib/*/ && rm -r -- ./server/*/",
"dev": "rollup -c -w",
"test": "jest --passWithNoTests",
"lint": "eslint --ext .js,.ts --ignore-path .eslintignore .",
"prepublish": "yarn build"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --ext .js,.ts --ignore-path .eslintignore ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "Bounteous",
"license": "MIT",
"dependencies": {
"@adobe/aem-headless-client-nodejs": "^1.0.2",
"@vue-storefront/core": "^2.3.0",
"rollup": "latest"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@jest/globals": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-vue": "latest",
"husky": "^5.1.3",
"jest": "latest",
"lint-staged": "latest",
"prettier": "latest",
"rollup-plugin-typescript2": "latest",
"ts-jest": "latest",
"typescript": "latest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"vuestorefront",
"vue-storefront",
"aem",
"cms",
"integration",
"vue",
"vuejs"
],
"homepage": "https://github.com/Bounteous-Inc/vue-storefront-aem"
}