-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "gleap-admin-helper",
"version": "1.0.3",
"description": "Helper library for the Gleap JS SDK.",
"main": "build/index.js",
"scripts": {
"start": "webpack serve --config webpack.config.demo.js",
"build": "webpack",
"build:demo": "webpack --config webpack.config.demo.js",
"test": "jest",
"prepare": "npm run build",
"trypublish": "npm publish || true"
},
"repository": {
"type": "git",
"url": "https://github.com/GleapSDK/JavaScript-AdminHelper-SDK"
},
"author": "Lukas Böhler <[email protected]> (https://gleap.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/GleapSDK/JavaScript-AdminHelper-SDK/issues"
},
"homepage": "https://github.com/GleapSDK/JavaScript-AdminHelper-SDK",
"keywords": [
"library",
"starter",
"es6"
],
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.23.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"babel-preset-minify": "^0.5.2",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.53.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"style-loader": "^3.3.2",
"terser-webpack-plugin": "^5.3.9",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.3",
"webpack-dev-server": "4.15.1"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js",
"\\.(css|less)$": "<rootDir>/scripts/testMock.js"
}
},
"dependencies": {
"pick-dom-element": "^0.2.3",
"unique-selector": "^0.5.0"
}
}