-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint",
"prepack": "run build"
},
"type": "module",
"name": "jwk-subtle",
"version": "1.0.7",
"description": "Verify RS256 JWT. Uses only `crypto.subtle`.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "[email protected]:change-engine/pbkdf-subtle.git",
"author": "ChangeEngine <[email protected]>",
"license": "MIT",
"files": [
"lib/**/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.55.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"root": true
},
"packageManager": "[email protected]",
"prettier": {
"printWidth": 120,
"trailingComma": "all",
"singleQuote": true
}
}