-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@digime/digime-sdk-nodejs",
"version": "16.1.0",
"description": "Node.JS SDK for digi.me",
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
"module": "dist/module/index.js",
"scripts": {
"build": "npm run clear-dist && npm run compile",
"compile": "npm run compile:main && npm run compile:module",
"compile:main": "./node_modules/.bin/tsc -p tsconfig.dist.json",
"compile:module": "./node_modules/.bin/tsc -p tsconfig.module.json",
"clear-dist": "rimraf ./dist",
"lint": "eslint . --max-warnings=0",
"lint-fix": "eslint . --fix",
"test": "./node_modules/.bin/jest --coverage --silent=false --config=jest-config.json",
"version": "ts-node ./tools/update-sdk-version.ts",
"generate-docs": "./node_modules/.bin/typedoc --tsconfig tsconfig.dist.json",
"preversion": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digime/digime-sdk-nodejs.git"
},
"author": "digi.me Limited",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digime/digime-sdk-nodejs/issues"
},
"homepage": "https://github.com/digime/digime-sdk-nodejs#readme",
"devDependencies": {
"@eslint/js": "~9.17.0",
"@types/jest": "~29.5.14",
"@types/jsonwebtoken": "~9.0.7",
"@types/lodash.get": "~4.4.9",
"@types/lodash.isequal": "~4.5.8",
"@types/lodash.isfunction": "~3.0.9",
"@types/lodash.isplainobject": "~4.0.9",
"@types/lodash.isstring": "~4.0.9",
"@types/node": "~20.17.10",
"@types/sprintf-js": "~1.1.4",
"cpr": "~3.0.1",
"eslint": "~9.17.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-headers": "~1.2.1",
"eslint-plugin-prettier": "~5.2.1",
"eslint-plugin-unicorn": "~56.0.1",
"jest": "~29.7.0",
"jest-circus": "~29.7.0",
"nock": "~13.5.6",
"prettier": "~3.4.1",
"rimraf": "~6.0.1",
"ts-jest": "~29.2.5",
"ts-node": "~10.9.2",
"typedoc": "~0.27.5",
"typedoc-plugin-missing-exports": "~3.1.0",
"typescript": "~5.7.2",
"typescript-eslint": "~8.18.0"
},
"dependencies": {
"@types/node-rsa": "~1.1.4",
"@types/urijs": "~1.19.25",
"base64url": "~3.0.1",
"form-data": "~4.0.1",
"fp-ts": "~2.16.9",
"got": "~11.8.6",
"io-ts": "~2.2.22",
"jsonwebtoken": "~9.0.2",
"lodash.get": "~4.4.2",
"lodash.isequal": "~4.5.0",
"lodash.isfunction": "~3.0.9",
"lodash.isplainobject": "~4.0.6",
"lodash.isstring": "~4.0.1",
"node-rsa": "~1.1.1",
"sprintf-js": "~1.1.3",
"type-fest": "~4.30.1",
"urijs": "~1.19.11"
},
"engines": {
"node": ">=20.0.0"
}
}