-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1021 Bytes
/
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
{
"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": "20.12.7",
"@types/node-fetch": "^2.6.11",
"gts": "^6.0.2",
"prettier": "^3.3.3",
"tap": "^21.0.1",
"typescript": "^5.4.3"
},
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "^2.7.0"
},
"overrides": {
"whatwg-url": "^14.0.0"
},
"tap": {
"coverage-map": "tests/map.mjs",
"plugin": [
"@tapjs/nock"
]
}
}