-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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
{
"name": "@mft/moneyhub-api-client",
"version": "6.5.1",
"description": "Node.JS client for the Moneyhub API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/ ",
"test": "mocha --require ts-node/register --config test/opts/integration.json",
"test-ci": "mocha --require ts-node/register --config test/opts/integration-ci.json || true",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"build": "tsc",
"ts-node": "ts-node",
"snyk-ci": "snyk test --fail-on=all --severity-threshold=high",
"snyk": "snyk test"
},
"keywords": [
"moneyhub",
"financial",
"technology",
"api",
"openid"
],
"author": "Moneyub Financial Technology",
"homepage": "/~https://github.com/moneyhub/moneyhub-api-client",
"repository": "moneyhub/moneyhub-api-client",
"license": "ISC",
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"form-data": "^3.0.1",
"got": "^11.8.5",
"jose": "^5.2.3",
"openid-client": "^5.6.5",
"query-string": "^7.1.1",
"ramda": "^0.27.2"
},
"devDependencies": {
"@mft/eslint-config-momentumft": "^8.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/ramda": "^0.28.13",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"body-parser": "^1.19.2",
"chai": "^4.3.6",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.1",
"config": "^3.3.7",
"eslint": "^8.20.0",
"expect-type": "^0.13.0",
"express": "^4.17.3",
"husky": "^7.0.4",
"mocha": "^10.0.0",
"mocha-junit-reporter": "^2.0.2",
"snyk": "^1.1041.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}