-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
46 lines (46 loc) · 1008 Bytes
/
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
{
"name": "bankid",
"description": "Npm module to simplify integration with the Swedish Bank ID service",
"keywords": [
"node",
"bankid",
"authentication"
],
"version": "3.2.1",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/anyfin/bankid.git"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"prepublishOnly": "yarn build",
"format": "prettier --write \"./**/*.{mjs,js,ts,json,md}\""
},
"author": "Sven Perkmann",
"license": "MIT",
"homepage": "https://github.com/anyfin/bankid#readme",
"bugs": {
"url": "https://github.com/anyfin/bankid/issues"
},
"dependencies": {
"axios": "^1.6.8"
},
"devDependencies": {
"@types/node": "^20.11.10",
"prettier": "^3.2.4",
"typescript": "5.x"
},
"peerDependencies": {
"@types/node": ">=14 <21"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
},
"engines": {
"node": ">=10.13.0"
}
}