-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
55
56
57
58
59
60
61
62
63
64
{
"name": "@spare-technologies/spare-typescript-sdk",
"version": "1.1.4",
"description": "Spare type script sdk",
"author": {
"email": "dev@tryspare.com",
"name": "Hasni Mehdi"
},
"repository": {
"type": "git",
"url": "git@github.com:spare-technologies/typescript-sdk.git"
},
"keywords": [
"payment",
"payment-sdk",
"fintech",
"fintech-api",
"openbanking",
"payment-gateway",
"webpaymentapi"
],
"license": "MIT",
"homepage": "https://docs.tryspare.com",
"main": "dist/index",
"types": "dist/index.d.ts",
"scripts": {
"clean": "[ ! -d \"dist\" ] || rm -r dist && [ ! -d \"distTests\" ] || rm -r distTests && [ ! -f junit.xml ] || rm junit.xml && [ ! -d coverage ] || rm -r coverage",
"cleanAndBuild": "[ ! -d \"dist\" ] || rm -r dist && [ ! -d \"distTests\" ] || rm -r distTests && [ ! -f junit.xml ] || rm junit.xml && [ ! -d coverage ] || rm -r coverage && tsc -b",
"build": "tsc -b",
"test": "jest -i --coverage --passWithNoTests "
},
"files": [
"/dist"
],
"publishConfig": {
"registry": "",
"access": "public"
},
"moduleDirectories": [
"node_modules",
"src"
],
"dependencies": {
"@types/tough-cookie": "^4.0.2",
"axios": "^0.27.2",
"ec-key-patch": "^0.0.4",
"js-sha256": "^0.9.0",
"json-stable-stringify": "^1.0.1",
"ts-serializer": "^2.2.6",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"typescript-json-serializer": "^4.2.0"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@jest/test-sequencer": "^28.1.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.1",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"npm": "^8.15.0",
"ts-jest": "^28.0.7"
}
}