This repository has been archived by the owner on Jun 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
81 lines (81 loc) · 2.02 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
72
73
74
75
76
77
78
79
80
81
{
"name": "use-auth0-hooks",
"version": "0.6.0",
"description": "An easy way to sign in with Auth0 in your React SPA",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "tests"
},
"keywords": [
"auth0",
"react",
"authentication"
],
"scripts": {
"clean": "rimraf dist",
"pretty": "prettier --write \"src/**/*.ts\" \"src/*.ts\"",
"lint": "eslint --fix --ext .tsx ./src",
"build": "tsc -p tsconfig.build.json",
"test": "jest --passWithNoTests --coverage",
"test:watch": "jest --coverage --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandrinodimattia/use-auth0-hooks.git"
},
"author": "Sandrino Di Mattia",
"license": "MIT",
"dependencies": {
"@auth0/auth0-spa-js": "^1.2.4",
"query-string": "^6.8.3"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"@types/react": "^16.9.4",
"@types/react-dom": "^16.9.0",
"@types/react-test-renderer": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.2.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-test-renderer": "^16.10.2",
"ts-jest": "^24.1.0",
"tslib": "^1.10.0",
"typescript": "^3.6.3"
},
"peerDependencies": {
"react": "^16.10.1",
"react-dom": "^16.10.1"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./",
"moduleFileExtensions": [
"tsx",
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/",
"./jest.config.js"
],
"coverageReporters": [
"lcov",
"text",
"text-summary"
],
"preset": "ts-jest"
}
}