-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "bankid_cz",
"version": "0.0.15",
"description": "BankId for Czech republic (OAuth - authorization_code)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "concurrently \"npm run build:watch\" \"npm run dev\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"prepare": "npm.cmd run compile",
"pretest": "npm.cmd run compile",
"posttest": "npm.cmd run lint",
"dev": "tsnd --no-notify --respawn src/main.ts",
"compile": "npm run clean && tsc",
"build:watch": "tsc -w -p tsconfig.json"
},
"keywords": [
"bankId",
"OAuth",
"Authorization Code",
"cz"
],
"author": "Lukas Hronec <info@lukashronec.cz> (https://github.com/Creiger)",
"homepage": "https://github.com/Creiger/bankid_cz",
"license": "GNU",
"devDependencies": {
"@types/hapi__wreck": "^17.0.1",
"@types/node": "^14.11.2",
"concurrently": "^6.0.2",
"gts": "^3.1.0",
"ts-node-dev": "^1.1.6",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"dependencies": {
"@hapi/wreck": "^17.1.0",
"@types/simple-oauth2": "^4.1.0",
"simple-oauth2": "^4.2.0"
}
}