-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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
{
"name": "bm_itg_extension",
"version": "1.1.0",
"description": "SFCC BM Extension cartridge",
"main": "index.js",
"scripts": {
"build": "npm run compile:js && npm run compile:scss",
"lint": "npm run lint:css && npm run lint:js",
"lint:fix": "sgmf-scripts --lint js --fix && sgmf-scripts --lint css --fix",
"lint:css": "sgmf-scripts --lint css",
"lint:js": "sgmf-scripts --lint js",
"upload": "sgmf-scripts --upload -- ",
"uploadCartridge": "sgmf-scripts --uploadCartridge bm_itg_extension",
"compile:js": "sgmf-scripts --compile js",
"compile:scss": "sgmf-scripts --compile css",
"watch": "sgmf-scripts --watch",
"watch:static": "sgmf-scripts --watch static",
"test": "sgmf-scripts --test tests/unit/**/*.js",
"test:integration": "sgmf-scripts --test 'tests/integration/**/*.js'",
"cover": "sgmf-scripts --cover 'tests/**/*.js'"
},
"devDependencies": {
"chai": "^3.5.0",
"css-loader": "^0.28.11",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^5.0.3",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-sitegenesis": "~1.0.0",
"husky": "^4.2.5",
"isml-linter": "^5.26.4",
"istanbul": "^0.4.4",
"mocha": "^5.2.0",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.5",
"proxyquire": "1.7.4",
"sass-loader": "^7.0.3",
"sgmf-scripts": "^2.4.2",
"sinon": "^6.1.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^17.0.0",
"stylelint-scss": "^2.5.0"
},
"browserslist": [
"last 2 versions",
"ie >= 10"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"bootstrap": "^5.3.2",
"jquery-ui": "^1.13.2",
"jquery-ui-dist": "^1.13.2",
"jquery-ui-timepicker-addon": "^1.6.3",
"sortablejs": "^1.15.1"
}
}