-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.86 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "itsme-client",
"version": "4.0.0",
"description": "A library to process itsme responses and consume itsme endpoints.",
"es2015": "lib/es2015/index.js",
"main": "lib/cjs/index.js",
"module": "lib/esm5/index.js",
"types": "lib/es2015/index.d.ts",
"scripts": {
"build": "npm-run-all build:**",
"build:clean": "rimraf ./lib",
"build:ts": "tsc --build ./tsconfig/tsconfig.*.json",
"lint": "eslint \"src/**/*.ts\"",
"test": "TS_NODE_PROJECT=tsconfig.json ts-node src/test.ts"
},
"dependencies": {
"axios": "^0.21.1",
"base64url": "^3.0.0",
"jwk-rsa-compute-primes": "^1.0.0",
"lru-cache": "^4.1.3",
"ms": "^2.1.1",
"node-jose": "^2.0.0",
"qs": "^6.5.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@matthiaskunnen/eslint-config-typescript-node": "^1.0.0",
"@types/lru-cache": "^4.1.1",
"@types/node": "^10.9.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslib": "^2.0.0",
"typescript": "~3.9.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatthiasKunnen/node-itsme-client.git"
},
"files": [
"@types",
"lib"
],
"keywords": [
"itsme",
"client",
"node"
],
"engines": {
"node": ">=12.0.0",
"yarn": "~1.22.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "Matthias Kunnen <matthias.kunnen@gmail.com>",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/MatthiasKunnen/node-itsme-client/issues"
},
"homepage": "https://github.com/MatthiasKunnen/node-itsme-client#readme"
}