-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
82 lines (82 loc) · 1.73 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
77
78
79
80
81
82
{
"name": "nagad-payment-gateway",
"version": "2.0.2",
"description": "Nagad Payment Gateway API Library to accept nagad payments on your node.js backend",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/shahriar-shojib/nagad-payment-gateway.git"
},
"author": "Shahriar Shojib <shahriar_shojib@hotmail.com>",
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.3",
"@swc/core": "^1.2.239",
"@swc/jest": "^0.2.22",
"@types/dotenv": "^8.2.0",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.6",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"dotenv": "^16.0.1",
"eslint": "^8.22.0",
"jest": "^28.1.3",
"prettier": "latest",
"tsup": "^6.2.2",
"typescript": "^4.7.4"
},
"keywords": [
"nodejs",
"javascript",
"npm",
"typescript",
"npm-library",
"nagad-payment",
"nagad",
"nagad-gateway",
"nagad-api",
"nagad-api-library",
"nagad-nodejs"
],
"scripts": {
"build": "tsup",
"lint": "eslint .",
"formatcheck": "prettier -c .",
"format": "prettier --write .",
"test": "jest",
"ci": "yarn --frozen-lockfile",
"release": "changeset publish"
},
"dependencies": {
"dayjs": "^1.11.7",
"node-fetch": "^2.6.7"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "@swc/jest"
},
"testEnvironment": "node"
}
}