forked from adobe/commerce-cif-magento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.85 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
{
"name": "@adobe/commerce-cif-magento-product",
"version": "1.0.2",
"description": "Adobe Commerce Integration Framework (CIF) Magento Integration Product Project",
"author": "Adobe Systems Inc.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/adobe/commerce-cif-magento.git"
},
"dependencies": {
"@adobe/commerce-cif-magento-common": "1.1.0",
"@adobe/commerce-cif-common": "1.0.0",
"@adobe/commerce-cif-model": "1.1.0",
"handlebars": "4.0.11",
"request": "2.87.0",
"request-promise-native": "1.0.5"
},
"devDependencies": {
"copy-webpack-plugin": "4.5.1",
"eslint": "3.19.0",
"eslint-plugin-header": "2.0",
"serverless": "1.29.0",
"serverless-openwhisk": "0.13.0",
"serverless-webpack": "4.3.0",
"webpack": "4.0.1"
},
"eslintConfig": {
"extends": "../../.eslintrc.js"
},
"scripts": {
"fix-serverless-permission": "chmod +x $(npm bin)/serverless",
"lint": "eslint -f table --ignore-path ../../.eslintignore .",
"deploy": "serverless deploy",
"remove": "serverless remove",
"deploy-current": "npm run deploy -- --ow-package commerce-cif-magento-product@$npm_package_version --shared",
"deploy-latest": "npm run deploy -- --ow-package commerce-cif-magento-product@latest --shared",
"deploy-suffix": "npm run deploy -- --ow-package commerce-cif-magento-product@${OW_PACKAGE_SUFFIX} --shared",
"deploy-package": "npm run deploy-current; npm run deploy-latest",
"remove-current": "npm run remove -- --ow-package commerce-cif-magento-product@$npm_package_version",
"remove-latest": "npm run remove -- --ow-package commerce-cif-magento-product@latest",
"remove-suffix": "npm run remove -- --ow-package commerce-cif-magento-product@${OW_PACKAGE_SUFFIX}",
"remove-package": "npm run remove-current; npm run remove-latest"
}
}