-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
67 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,65 @@ | ||
{ | ||
"name": "ra-auth-msal", | ||
"version": "1.1.0", | ||
"repository": "[email protected]:marmelab/ra-auth-msal.git", | ||
"author": "Jean-Baptiste Kaiser <[email protected]> (https://marmelab.com/)", | ||
"license": "MIT", | ||
"files": [ | ||
"*.md", | ||
"lib", | ||
"esm", | ||
"src" | ||
"name": "ra-auth-msal", | ||
"version": "1.2.0", | ||
"repository": "[email protected]:marmelab/ra-auth-msal.git", | ||
"author": "Jean-Baptiste Kaiser <[email protected]> (https://marmelab.com/)", | ||
"license": "MIT", | ||
"files": [ | ||
"*.md", | ||
"lib", | ||
"esm", | ||
"src" | ||
], | ||
"main": "lib/index", | ||
"module": "esm/index.js", | ||
"types": "esm/index.d.ts", | ||
"sideEffects": false, | ||
"dependencies": { | ||
"@azure/msal-browser": "^2.16.1", | ||
"react-admin": "^4.9.0" | ||
}, | ||
"scripts": { | ||
"build": "yarn run build-cjs && yarn run build-esm", | ||
"build-cjs": "rimraf ./lib && tsc", | ||
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015", | ||
"watch": "tsc --outDir esm --module es2015 --watch", | ||
"lint": "eslint --fix ./src", | ||
"test-unit": "jest" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^29.1.0", | ||
"jest": "^29.1.1", | ||
"jest-environment-jsdom": "^29.1.1", | ||
"react": "^18.2.0", | ||
"react-admin": "^4.12.1", | ||
"react-dom": "^18.2.0", | ||
"rimraf": "^3.0.2", | ||
"ts-jest": "^29.0.3", | ||
"typescript": "^4.8.4" | ||
}, | ||
"jest": { | ||
"preset": "ts-jest", | ||
"testEnvironment": "jsdom", | ||
"collectCoverageFrom": [ | ||
"**/*.js", | ||
"**/*.ts", | ||
"!__tests__/util.ts", | ||
"!coverage/**", | ||
"!**/node_modules/**" | ||
], | ||
"main": "lib/index", | ||
"module": "esm/index.js", | ||
"types": "esm/index.d.ts", | ||
"sideEffects": false, | ||
"dependencies": { | ||
"@azure/msal-browser": "^2.16.1", | ||
"react-admin": "^4.9.0" | ||
}, | ||
"scripts": { | ||
"build": "yarn run build-cjs && yarn run build-esm", | ||
"build-cjs": "rimraf ./lib && tsc", | ||
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015", | ||
"watch": "tsc --outDir esm --module es2015 --watch", | ||
"lint": "eslint --fix ./src", | ||
"test-unit": "jest" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^29.1.0", | ||
"jest": "^29.1.1", | ||
"jest-environment-jsdom": "^29.1.1", | ||
"react": "^18.2.0", | ||
"react-admin": "^4.12.1", | ||
"react-dom": "^18.2.0", | ||
"rimraf": "^3.0.2", | ||
"ts-jest": "^29.0.3", | ||
"typescript": "^4.8.4" | ||
}, | ||
"jest": { | ||
"preset": "ts-jest", | ||
"testEnvironment": "jsdom", | ||
"collectCoverageFrom": [ | ||
"**/*.js", | ||
"**/*.ts", | ||
"!__tests__/util.ts", | ||
"!coverage/**", | ||
"!**/node_modules/**" | ||
], | ||
"verbose": true, | ||
"automock": false, | ||
"clearMocks": true, | ||
"testPathIgnorePatterns": [ | ||
"/node_modules/" | ||
], | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"tsx", | ||
"js", | ||
"jsx", | ||
"json", | ||
"node" | ||
] | ||
} | ||
} | ||
"verbose": true, | ||
"automock": false, | ||
"clearMocks": true, | ||
"testPathIgnorePatterns": [ | ||
"/node_modules/" | ||
], | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"tsx", | ||
"js", | ||
"jsx", | ||
"json", | ||
"node" | ||
] | ||
} | ||
} |