-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1021 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 1021 Bytes
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
{
"name": "@blnkfinance/blnk-typescript",
"version": "1.0.1",
"description": "Blnk Finance SDK in TypeScript",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"test:unit": "tap tests/unit"
},
"keywords": [
"sdk",
"typescript",
"blnk",
"finance",
"api"
],
"author": "BLNK",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/node-fetch": "^2.6.13",
"gts": "^6.0.2",
"prettier": "^3.8.1",
"tap": "^21.6.2",
"typescript": "^5.9.3"
},
"dependencies": {
"form-data": "^4.0.5",
"node-fetch": "^2.7.0"
},
"overrides": {
"whatwg-url": "^16.0.1"
},
"tap": {
"coverage-map": "tests/map.mjs",
"plugin": [
"@tapjs/nock"
]
}
}