-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "pem2jwk-parser",
"version": "2.2.2",
"description": "A tool to convert a PEM file to a JSON Web Key (JWK). AThe package provides methods to convert both public and private PEM files, as well as a method to convert a private PEM to a public JWK.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --fix",
"prepare": "npm run build",
"preversion": "npm run lint",
"format": "prettier --write .",
"prepublishOnly": "npm run lint && npm run build",
"postversion": "git push && git push --tags",
"version": "npm run format && git add -A src",
"dev": "tsnd --inspect --transpile-only --ignore-watch node_modules --respawn ./src/index.ts"
},
"files": [
"lib/**/*"
],
"keywords": [
"pem2jwk",
"converter",
"jwk",
"PEM",
"pemtojwk",
"pem-jwk"
],
"author": "pmartinsdev",
"repository": {
"type": "git",
"url": "https://github.com/pmartinsdev/pem2jwk-parser"
},
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.18",
"@types/pem-jwk": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"pem-jwk": "^2.0.0"
}
}