forked from SAP/luigi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "luigi-core-private",
"version": "0.4.11",
"private": true,
"description": "luigi-core development version, only the public folder is being published to npm as a package",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.4",
"bundlesize": "^0.17.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^0.28.11",
"file-loader": "^2.0.0",
"fiori-fundamentals": "1.4.5",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "11.12.0",
"jsdom-global": "3.0.2",
"mini-css-extract-plugin": "^0.4.4",
"mocha": "^5.2.0",
"mock-browser": "^0.92.14",
"node-sass": "^4.11.0",
"oidc-client": "^1.5.2",
"rewire": "^4.0.1",
"sinon": "^5.1.0",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"svelte": "^2.8.0",
"svelte-loader": "^2.9.1",
"svelte-transitions": "^1.2.0",
"url-loader": "^1.0.1",
"webpack": "^4.11.1",
"webpack-cli": "^3.0.3"
},
"scripts": {
"bundle": "webpack --display-error-details",
"bundle-develop": "webpack -d --watch",
"test": "babel-node ./node_modules/istanbul/lib/cli.js cover _mocha -- --require @babel/register --require jsdom-global/register --recursive test",
"test:watch": "npm run test -- --watch",
"bundlesize": "npm run bundle && bundlesize",
"prepush": "npm test"
},
"bundlesize": [
{
"path": "./public/luigi.js",
"maxSize": "100 kB",
"compression": "none"
},
{
"path": "./public/luigi.css",
"maxSize": "300 kB",
"compression": "none"
}
],
"repository": {
"type": "git",
"url": "ssh://github.com/kyma-project/luigi.git"
},
"dependencies": {
"npm": "^6.5.0",
"test": "^0.6.0"
}
}