forked from pingidentity/pf-authn-js-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.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
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
{
"name": "@ping-identity/pf-authn-js-widget",
"version": "1.11.0",
"description": "JavaScript Widget for the PingFederate Authentication API",
"main": "./dist/pf.authn-widget.js",
"types": "types/index.d.ts",
"scripts": {
"start": "cross-env-shell webpack-dev-server --config webpack.config.js --env baseurl=$BASEURL --env operationmode=$OPERATIONMODE --mode=production",
"build": "webpack --mode=production --progress --profile --color",
"dev": "webpack --mode=development --progress --profile --color",
"clean": "rimraf dist test/coverage",
"lint": "eslint ./src/**.js",
"coverage": "jest --coverage --config=jest.config.js",
"test": "jest --config=jest.config.js",
"test:watch": "jest --watch"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git@github.com:pingidentity/pf-authn-js-widget.git"
},
"engines": {
"node": ">=14.0.0 <=17.0.0"
},
"keywords": [
"PingFederate",
"Ping Identity",
"API",
"Authentication",
"javascript"
],
"author": "Ping Identity",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pingidentity/pf-authn-js-widget/issues"
},
"browserslist": [
"> 0.1%",
"not ie <= 9"
],
"homepage": "https://github.com/pingidentity/pf-authn-js-widget#readme",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-private-methods": "^7.16.11",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-arrow-functions": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/runtime-corejs3": "^7.17.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-minify": "^0.5.1",
"copy-webpack-plugin": "^6.1.1",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"eslint": "^5.16.0",
"file-loader": "^6.2.0",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.1",
"jest": "^28.0.1",
"jest-environment-jsdom": "^28.0.2",
"mini-css-extract-plugin": "^2.6.0",
"mocha": "^6.1.3",
"nyc": "^14.1.1",
"resolve-url-loader": "^3.1.2",
"rimraf": "^2.7.1",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"source-map-loader": "^0.2.4",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/runtime": "^7.7.2",
"core-js": "^3.4.0",
"es6-promise": "^4.2.8",
"formdata-polyfill": "^4.0.10",
"qrcode": "^1.5.0",
"query-string": "^7.1.1",
"validate.js": "^0.13.1",
"whatwg-fetch": "^3.6.2"
}
}