-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.62 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
{
"name": "@fsinfuhh/js_auth_mafiasi",
"description": "JavaScript authentication library for working with Mafiasi",
"license": "MIT",
"version": "1.0.1",
"repository": "git://github.com/fsinfuhh/js_auth_mafiasi.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": {
"name": "Finn-Thorben Sell",
"email": "[email protected]",
"url": "https://finn-thorben.me"
},
"maintainers": [
{
"name": "Server-AG",
"email": "[email protected]"
}
],
"scripts": {
"compile": "tsc -p .",
"lint": "eslint --max-warnings 0 --fix .",
"test": "jest",
"prepare": "npm run lint && npm run compile"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@openid/appauth": "^1.3.1",
"jwt-js": "^0.5.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^25.3.4",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typescript": "^4.6.4"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"jest"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:jest/style"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
},
"ignorePatterns": [
"node_modules",
"dist"
]
},
"jest": {
"preset": "ts-jest"
}
}