-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "@vtfk/react-msal",
"version": "2.0.3",
"description": "MSAL/Azure React authentication hook",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vtfk/react-msal.git"
},
"keywords": [],
"author": "Mats Andreassen <[email protected]> (https://github.com/matsand)",
"bugs": {
"url": "https://github.com/vtfk/react-msal/issues"
},
"homepage": "https://github.com/vtfk/react-msal#readme",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "npm run build",
"test": "npm run test:unit && npm run test:lint && npm run test:build",
"test:build": "npm run build",
"test:lint": "standard ./src/**/*.js",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"test:coverage": "react-scripts test --env=jsdom --coverage",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0"
},
"devDependencies": {
"cross-env": "7.0.3",
"gh-pages": "3.2.3",
"microbundle-crl": "0.13.11",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts": "4.0.3",
"standard": "16.0.4"
},
"standard": {
"env": [
"jest"
]
},
"files": [
"dist"
],
"dependencies": {
"@azure/msal-browser": "2.22.1",
"axios": "0.26.1"
}
}