-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.37 KB
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
{
"name": "react-azure-adb2c",
"version": "0.2.0",
"description": "Authentication library for Azure AD B2C and ReactJS",
"main": "lib/react-azure-adb2c.js",
"scripts": {
"compile": "cross-env NODE_ENV=production babel src --out-dir lib",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesrandall/react-azure-adb2c.git"
},
"keywords": [
"react",
"js",
"AAD",
"B2C",
"oauth",
"azure"
],
"author": "James Randall",
"license": "MIT",
"bugs": {
"url": "https://github.com/JamesRandall/react-azure-adb2c/issues"
},
"homepage": "https://github.com/JamesRandall/react-azure-adb2c#readme",
"dependencies": {
"msal": "^0.1.5"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6.24.1",
"babel-eslint": "^8.0.3",
"babel-jest": "20.0.3",
"babel-loader": "7.0.0",
"babel-plugin-import": "^1.2.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-runtime": "6.23.0",
"babel-preset-react-app": "^3.0.0",
"cross-env": "^5.1.4",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1"
}
}