-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.35 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@shopgate/cloud-sdk-webpack",
"version": "1.20.13",
"description": "Shopgate's Webpack compiler",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/shopgate/cloud-sdk-webpack.git"
},
"bugs": {
"url": "https://github.com/shopgate/cloud-sdk-webpack/issues"
},
"homepage": "https://github.com/shopgate/cloud-sdk-webpack",
"keywords": [
"shopgate",
"cloud",
"sdk",
"webpack",
"compiler"
],
"contributors": [
"Florian Müller <florian.mueller81@gmx.de> (https://github.com/devbucket)",
"Richard Gorman <richardgorman@outlook.com> (https://github.com/richardgorman)",
"Waldemar Rutkowski <waldemar.rutkowski+github@shopgate.com> (https://github.com/SG-Noxoreos)",
"Oleksandr Bilenko <oleksandr.bilenko@shopgate.com> (https://github.com/alexbridge)"
],
"main": "index.js",
"bin": {
"sgcloud-webpack": "./bin/sgcloud-webpack"
},
"scripts": {
"test": "mocha",
"test:watch": "mocha --watch",
"cover": "rimraf ./build ./.nyc_output && nyc mocha",
"lint": "eslint --ignore-path .gitignore --ignore-path .eslintignore --ext .js --ext .json .",
"lint-staged": "lint-staged",
"production": "node ./bin/sgcloud-webpack",
"preversion": "npm test",
"version": "git add -A",
"postversion": "git push && git push --tags && if [ \"$BETA\" != true ]; then npm publish --access public; else npm publish --tag beta --access public; fi"
},
"lint-staged": {
"*.js": "eslint --ignore-path .gitignore --ignore-path .eslintignore --ext .js ."
},
"devDependencies": {
"@shopgate/eslint-config": "6.7.2",
"coveralls": "3.0.2",
"eslint": "4.19.1",
"jsdom": "11.12.0",
"jsdom-global": "3.0.2",
"lint-staged": "8.1.4",
"mocha": "5.2.0",
"nyc": "14.1.0",
"pre-commit": "1.2.2",
"rimraf": "2.6.3",
"sinon": "4.5.0"
},
"dependencies": {
"@babel/core": "7.5.5",
"@babel/runtime-corejs3": "7.5.5",
"babel-core": "6.26.3",
"babel-loader": "8.0.6",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.26.0",
"babel-runtime": "6.26.0",
"bluebird": "3.5.3",
"cache-loader": "4.1.0",
"chalk": "2.4.2",
"color": "3.1.0",
"compression-webpack-plugin": "2.0.0",
"css-loader": "1.0.1",
"find-cache-dir": "1.0.0",
"fs-extra": "4.0.3",
"html-webpack-plugin": "3.2.0",
"import-fresh": "3.0.0",
"intl": "1.2.5",
"json-loader": "0.5.7",
"loader-utils": "1.2.3",
"lodash": "4.17.14",
"messageformat": "2.0.5",
"progress-bar-webpack-plugin": "1.12.1",
"rxjs": "~5.5.12",
"script-ext-html-webpack-plugin": "2.1.3",
"string-replace-webpack-plugin": "0.1.3",
"style-loader": "0.23.1",
"svg-inline-loader": "0.8.0",
"terser-webpack-plugin": "1.2.3",
"thread-loader": "2.1.3",
"webpack": "4.39.1",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "3.3.6",
"webpack-dev-server": "3.7.2",
"webpack-merge": "4.2.1",
"workbox-webpack-plugin": "4.3.1",
"yargs": "13.2.1"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"pre-commit": [
"lint-staged"
],
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"build",
"test"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true,
"report-dir": "build"
}
}