-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "easypay.js",
"version": "1.0.6",
"description": "a payment service library for handling different Iranian payment gateways",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist",
"package.json",
"README.md"
],
"scripts": {
"lint": "eslint . --ext .ts",
"test:unit": "jest",
"build:ts": "tsc",
"build": "tsup && npm run doc",
"doc": "jsdoc -c jsdoc.json",
"format": "prettier --write \"./src/**/*.ts\""
},
"author": "sajjadmrx",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"better-docs": "^2.7.3",
"clean-jsdoc-theme": "^4.2.17",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"jsdoc-plugin-typescript": "^2.2.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/sajjadmrx/easypay.js"
},
"homepage": "https://sajjadmrx.github.io/easypay-js/",
"dependencies": {
"axios": "^1.7.2",
"prettier": "^3.0.3"
},
"keywords": [
"payment",
"payment gateway",
"Iranian payments",
"payment processing"
]
}