-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
71 lines (71 loc) · 1.79 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
{
"name": "redux-oidc",
"version": "4.0.0",
"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/maxmantz/redux-oidc.git"
},
"bugs": {
"url": "https://github.com/maxmantz/redux-oidc/issues",
"email": "[email protected]"
},
"keywords": [
"oidc",
"redux",
"react-component",
"react-redux",
"openid",
"oauth2"
],
"author": "Maximilian Mantz",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-rewire": "^1.0.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.18.0",
"babel-template": "^6.16.0",
"babel-types": "^6.21.0",
"browserify": "^13.3.0",
"chai": "^3.5.0",
"cheerio": "^0.22.0",
"co-mocha": "^1.1.3",
"enzyme": "^2.7.0",
"es6-promise": "^4.0.5",
"expect": "^1.20.2",
"file-loader": "^0.9.0",
"jsdom": "^9.9.1",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"mocha-webpack": "^0.7.0",
"node-storage-shim": "^1.0.1",
"sinon": "^1.17.7",
"webpack": "^2.2.0",
"webpack-node-externals": "^1.5.4"
},
"peerDependencies": {
"react": ">=16.8.4",
"prop-types": ">=15.5.8",
"oidc-client": ">=1.6.1"
},
"browserify": {
"transform": [
"reactify"
]
}
}