-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.94 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
{
"name": "@resonant/oauth-client",
"version": "0.0.0",
"description": "A TypeScript library for performing OAuth2 login to a Resonant server.",
"repository": "github:kitware-resonant/resonant-oauth-client",
"author": "Kitware, Inc. <[email protected]>",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=16"
},
"module": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/src/",
"/dist/"
],
"scripts": {
"test:lint": "eslint ./src/**.ts",
"test:type": "tsc --project ./tests",
"test:unit": "vitest --watch=false",
"test": "npm-run-all test:lint test:type test:unit",
"watch": "tsc --watch",
"build:clean": "rimraf ./dist",
"build:compile": "tsc",
"build": "npm-run-all build:clean build:compile",
"prepack": "npm-run-all build"
},
"dependencies": {
"@openid/appauth": "^1.3.2"
},
"devDependencies": {
"@node-oauth/oauth2-server": "^5.2.0",
"@tsconfig/recommended": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@vitest/coverage-v8": "3.0.5",
"eslint": "^8.10.0",
"eslint-config-airbnb-typescript": "^18",
"eslint-plugin-import": "^2.31.0",
"happy-dom": "^16.7.2",
"msw": "^2.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"typescript": "~5.5",
"vitest": "^3.0.3"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"airbnb-base",
"airbnb-typescript/base"
],
"rules": {
"no-restricted-syntax": 0,
"no-console": [
"warn",
{
"allow": [
"error"
]
}
]
}
}
}