forked from drod21/redux-oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.88 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
{
"name": "redux-oidc-hooks",
"version": "1.0.4",
"description": "A package for managing OpenID Connect authentication in redux apps",
"main": "dist/redux-oidc.js",
"types": "./index.d.ts",
"scripts": {
"test": "mocha-webpack --webpack-config webpack.config-test.js \"tests/**/*.test.js\"",
"build": "webpack -p",
"prepublish": "npm run test",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/drod21/redux-oidc.git"
},
"bugs": {
"url": "https://github.com/drod21/redux-oidc/issues",
"email": "[email protected]"
},
"keywords": [
"oidc",
"redux",
"react-component",
"react-redux",
"openid",
"oauth2"
],
"author": "Derek Rodriguez",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.0.17",
"@types/redux": "^3.6.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-plugin-rewire": "^1.2.0",
"babel-plugin-uglify": "^1.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.26.0",
"babel-template": "^6.26.0",
"babel-types": "^6.26.0",
"browserify": "^13.3.0",
"chai": "^3.5.0",
"cheerio": "^0.22.0",
"co-mocha": "^1.2.2",
"enzyme": "^3.11.0",
"es6-promise": "^4.2.8",
"expect": "^1.20.2",
"file-loader": "^0.9.0",
"jsdom": "^9.12.0",
"json-loader": "^0.5.7",
"mocha": "^3.5.3",
"mocha-webpack": "^0.7.0",
"node-storage-shim": "^1.0.1",
"sinon": "^1.17.7",
"typescript": "^4.7.4",
"webpack": "^2.7.0",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"oidc-client-ts": ">=2.0.5",
"prop-types": ">=15.8.1",
"react": ">=17.0.0"
},
"browserify": {
"transform": [
"reactify"
]
}
}