-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 3.75 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "luigi-core-private",
"private": true,
"description": "luigi-core development version, only the public folder is being published to npm as a package",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"@sap-theming/theming-base-content": "~11.1.24",
"@webcomponents/webcomponentsjs": "^2.3.0",
"acorn": "^6.4.1",
"axios": ">=0.21.1",
"babel-loader": "^8.0.4",
"bundlesize": "^0.17.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.2.1",
"css-loader": "^3.0.0",
"esm": "^3.2.25",
"file-loader": "^2.0.0",
"fs-extra": "9.0.0",
"fundamental-styles": "^0.14.0",
"jsdom": "15.0.0",
"jsdom-global": "3.0.2",
"live-server": "^1.2.1",
"lodash": ">=4.17.13",
"lodash.template": ">=4.5.0",
"mini-css-extract-plugin": "^0.8.0",
"mkdirp": "^1.0.3",
"mocha": "^7.1.1",
"mock-local-storage": "^1.1.15",
"node-sass": "^4.14.1",
"nyc": "^15.0.0",
"oidc-client": "^1.5.2",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"regenerator-runtime": "^0.13.3",
"replace": "^1.2.0",
"serialize-javascript": ">=3.1.0",
"sinon": "^7.3.2",
"source-map-loader": "^0.2.3",
"style-loader": "^0.23.1",
"svelte": "^3.12.1",
"svelte-loader": "2.13.6",
"svelte-transitions": "^1.2.0",
"tar": ">=4.4.2",
"terser": "^4.4.0",
"url-loader": "^1.0.1",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.9"
},
"scripts": {
"bundle": "npm run bundle-evergreen && npm run bundle-ie11",
"bundle-evergreen": "webpack --mode=production --display-error-details",
"bundle-ie11": "webpack --mode=production --display-error-details --config webpack-ie11.config.js",
"bundle-develop": "npm run bundle-develop-evergreen",
"bundle-develop-evergreen": "npm run bundle-evergreen -- -d --watch",
"bundle-develop-ie11": "MINIFY=false webpack --display-error-details --config webpack-ie11.config.js --debug --devtool cheap-source-map --output-pathinfo --watch",
"test": "babel-node ./node_modules/nyc/bin/nyc.js mocha -- --require esm --recursive test",
"test:watch": "npm run test -- --watch",
"bundlesize": "npm run bundle && bundlesize",
"bundlesizeOnly": "bundlesize",
"helper:webpack-analyze": "ANALYZE=true npm run bundle-evergreen",
"simpledev": "node ./dev-tools/simpledev.js"
},
"bundlesize": [
{
"path": "./public/luigi.js",
"maxSize": "450 kB",
"compression": "none"
},
{
"path": "./public/luigi.css",
"maxSize": "450 kB",
"compression": "none"
},
{
"path": "./public-ie11/luigi-ie11.js",
"maxSize": "650 kB",
"compression": "none"
},
{
"path": "./public-ie11/luigi-ie11.css",
"maxSize": "550 kB",
"compression": "none"
}
],
"nyc": {
"check-coverage": true,
"lines": 55,
"statements": 55,
"functions": 54,
"branches": 55,
"watermarks": {
"lines": [
55,
65
],
"functions": [
55,
60
],
"branches": [
55,
65
],
"statements": [
55,
65
]
},
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js"
],
"require": [
"@babel/register",
"jsdom-global/register"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": true,
"all": true
},
"repository": {
"type": "git",
"url": "ssh://github.com/SAP/luigi.git"
}
}