-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
84 lines (84 loc) · 2.92 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "int_worldpay_sfra",
"version": "q3-24-v24.1.0",
"description": "WorldPay Link Cartridge",
"main": "index.js",
"scripts": {
"test": "sgmf-scripts --test test/unit/**/*.js",
"test:integration": "node bin/Makefile integration -- ",
"upload": "sgmf-scripts --upload",
"uploadCartridge": "sgmf-scripts --uploadCartridge int_worldpay_sfra,int_worldpay_core,int_worldpay,int_worldpay_csc",
"lint": "sgmf-scripts --lint js",
"compile:js": "sgmf-scripts --compile js",
"test:acceptance": "./node_modules/.bin/codeceptjs run --verbose",
"test:acceptance:launchReport": "./node_modules/.bin/allure serve test/acceptance/report",
"compile:scss": "sgmf-scripts --compile css",
"lighthouse:accessibility": "node test/accessibility/run-accessibility.js",
"init:isml": "./node_modules/.bin/isml-linter --init",
"lint:isml": "./node_modules/.bin/isml-linter",
"build:isml": "./node_modules/.bin/isml-linter --build",
"fix:isml": "./node_modules/.bin/isml-linter --autofix"
},
"license": "WorldPay",
"dependencies": {
"babel-preset-env": "^1.7.0",
"chromedriver": "^2.44.1",
"cleave.js": "^1.0.2",
"crypto-js": "^4.0.0",
"css-loader": "^0.28.11",
"jquery": "^3.5.1",
"module-alias": "^2.1.0",
"postcss-loader": "^2.1.5",
"isml-linter": "^5.26.4"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/register": "^7.0.0",
"@wdio/selenium-standalone-service": "^5.8.0",
"allure-commandline": "^2.9.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.0-beta.3",
"chai": "^3.5.0",
"chai-subset": "^1.5.0",
"cldr-data": "^32.0.1",
"codeceptjs": "^2.1.0",
"dotenv": "^8.2.0",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-sitegenesis": "~1.0.0",
"globalize": "^1.1.1",
"husky": "^4.2.5",
"istanbul": "^0.4.4",
"lighthouse": "^6.3.0",
"mocha": "^2.5.3",
"mocha-junit-reporter": "^1.15.0",
"moment-timezone": "^0.5.14",
"node-sass": "^4.9.4",
"properties-parser": "^0.3.0",
"proxyquire": "1.7.4",
"puppeteer": "^5.2.1",
"request-promise": "^4.2.2",
"sass-loader": "^7.0.3",
"sgmf-scripts": "^2.0.0",
"should": "^13.2.3",
"sinon": "^1.17.4",
"stylelint": "^7.1.0",
"stylelint-config-standard": "^12.0.0",
"stylelint-scss": "^1.3.4",
"xml2js": "^0.4.17"
},
"paths": {
"base": "../storefront-reference-architecture/cartridges/app_storefront_base/"
},
"babel": {
"presets": [
"env"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}