Skip to content

Commit

Permalink
chore: normalize package.json (#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
simenandre committed Aug 29, 2021
1 parent f13cfe6 commit 9c26f1a
Showing 1 changed file with 24 additions and 31 deletions.
55 changes: 24 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "1.5.1",
"private": false,
"description": "",
"repository": "github:bjerkio/oidc-react",
"license": "MIT",
"author": "",
"main": "build/src/index.js",
"files": [
"/build"
Expand All @@ -15,14 +18,27 @@
"lint": "eslint . --ext .ts,.tsx",
"generate-docs": "typedoc --out docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bjerkio/oidc-react.git"
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
},
"preset": "ts-jest",
"testPathIgnorePatterns": [
"/node_modules/",
"/__fixtures__/",
"<rootDir>/build"
]
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bjerkio/oidc-react/issues"
"dependencies": {
"oidc-client": "^1.11.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.4.0",
Expand Down Expand Up @@ -50,31 +66,8 @@
"typedoc-plugin-markdown": "^3.0.3",
"typescript": "^3.5.3"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"/node_modules/",
"/__fixtures__/",
"<rootDir>/build"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
}
},
"homepage": "https://github.com/bjerkio/oidc-react#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"dependencies": {
"oidc-client": "^1.11.5"
}
}
}

0 comments on commit 9c26f1a

Please sign in to comment.