-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.7 KB
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
{
"name": "jwt-encrypt",
"version": "1.0.4",
"private": false,
"description": "A JWT encryption and decryption library for node applications",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/dbpkgs/jwt-encrypt"
},
"bugs": {
"url": "https://github.com/dbpkgs/jwt-encrypt/issues"
},
"author": "dbpkgs",
"engines": {
"node": ">=14"
},
"keywords": [
"jwt-encrypt",
"encrypt-jwt",
"jwt",
"encrypt"
],
"license": "MIT",
"scripts": {
"build": "yarn lint && rimraf ./lib && tsc",
"check:type": "tsc --project tsconfig.json",
"check:format": "prettier --check '**/*.{js,md,ts,yaml,yml}' --ignore-path ./.prettierignore",
"format": "prettier --write '**/*.{js,md,ts,yaml,yml,sh}'",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "eslint \"**/*.ts\" --fix",
"prepare": "yarn build",
"prepublishOnly": "yarn check:type && yarn lint && yarn test",
"preversion": "yarn lint",
"postversion": "git push && git push --tags",
"test": "jest --config jestconfig.json",
"test:coverage": "yarn test --coverage",
"version": "yarn run format && git add -A src"
},
"dependencies": {
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.14.4",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}