forked from E-wave112/fincra-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"version": "0.2.4",
"license": "GPL-3.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "jest --config jest.config.js --no-cache",
"format": "yarn prettier --write .",
"lint": "tsdx lint",
"prepare": "tsdx build",
"prepublishOnly": "yarn test && yarn build",
"preversion": "yarn test && yarn build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"keywords": [
"fincra",
"fintech",
"payments",
"sdk",
"typings"
],
"repository": {
"type": "git",
"url": "https://github.com/E-wave112/fincra-node-sdk.git"
},
"homepage": "https://github.com/E-wave112/fincra-node-sdk#readme",
"bugs": {
"url": "https://github.com/E-wave112/fincra-node-sdk/issues"
},
"readme": "README.md",
"husky": {
"hooks": {}
},
"name": "fincra-node-sdk",
"author": "E-wave112",
"module": "dist/fincra-node-sdk.esm.js",
"size-limit": [
{
"path": "dist/fincra-node-sdk.cjs.production.min.js",
"limit": "15 KB"
},
{
"path": "dist/fincra-node-sdk.esm.js",
"limit": "15 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"@types/jest": "^28.1.0",
"class-validator": "^0.13.2",
"dotenv": "^16.0.1",
"eslint": "^8.16.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^8.0.1",
"jest": "^28.1.0",
"prettier": "2.6.2",
"size-limit": "^7.0.8",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.1",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^0.27.2"
}
}