-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "remix-auth-microsoft",
"version": "3.0.1",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint --ext .ts,.tsx src/",
"test": "vitest --config config/vitest.config.ts run",
"coverage": "npm run test -- --coverage"
},
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy"
],
"license": "MIT",
"files": [
"build",
"package.json",
"README.md"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^49.0.0",
"prettier": "^2.3.2",
"typescript": "^5.1.6",
"vitest": "^2.1.8"
},
"dependencies": {
"remix-auth-oauth2": "^3.2.2"
},
"author": "Juhana Jauhiainen <[email protected]>",
"bugs": {
"url": "https://github.com/juhanakristian/remix-auth-microsoft/issues"
},
"homepage": "https://github.com/juhanakristian/remix-auth-microsoft#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/juhanakristian/remix-auth-microsoft.git"
}
}