-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 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
54
{
"name": "yoti",
"version": "4.13.2",
"description": "Yoti NodeJS SDK for back-end integration",
"author": "Yoti LTD <tech@yoti.com> (https://www.yoti.com/developers)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/getyoti/yoti-node-sdk.git"
},
"engines": {
"node": ">=14.17.0"
},
"types": "./types/index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "jest",
"audit": "audit-ci --config ./audit-ci.jsonc",
"types:generate": "tsc index.js --declaration --allowJs --checkJs --resolveJsonModule --emitDeclarationOnly --skipLibCheck --outDir types",
"types:refresh": "rm -rf types && npm run types:generate && git add types",
"pre-commit": "npm run test && npm run types:refresh"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"./*.js",
"./src/**/*.js",
"./config/**/*.js",
"!**/node_modules/**",
"!**/vendor/**"
],
"coverageDirectory": "./coverage"
},
"dependencies": {
"form-data": "4.0.4",
"node-forge": "1.4.0",
"protobufjs": "8.2.1",
"superagent": "10.3.0"
},
"devDependencies": {
"@eslint/compat": "2.0.5",
"@eslint/js": "9.39.4",
"@types/jest": "30.0.0",
"audit-ci": "7.1.0",
"eslint": "9.39.4",
"eslint-config-airbnb-extended": "3.1.0",
"eslint-plugin-jest": "29.15.2",
"husky": "9.1.7",
"jest": "30.3.0",
"nock": "13.5.6",
"typescript": "5.3.3"
}
}