-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "yoti",
"version": "4.10.0",
"description": "Yoti NodeJS SDK for back-end integration",
"author": "Yoti LTD <[email protected]> (https://www.yoti.com/developers)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/getyoti/yoti-node-sdk.git"
},
"engines": {
"node": ">=14"
},
"types": "./types/index.d.ts",
"scripts": {
"lint": "npx eslint *.js './src/**/*.js' './tests/**/*.spec.js' config/*.js",
"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.0",
"node-forge": "1.3.1",
"protobufjs": "7.3.0",
"superagent": "9.0.2",
"uuid": "9.0.1"
},
"devDependencies": {
"@types/jest": "29.5.2",
"audit-ci": "6.6.1",
"eslint": "8.43.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-node": "11.1.0",
"husky": "9.0.11",
"jest": "29.5.0",
"nock": "13.2.9",
"typescript": "5.3.3"
}
}