-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.42 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.42 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
65
66
67
68
69
70
71
{
"name": "unitpay-api",
"version": "4.0.1",
"description": "UnitPay API wrapper for Node.js",
"exports": {
".": {
"import": "./index.js",
"types": "./index.d.ts"
}
},
"scripts": {
"prebuild": "rm -rf .build",
"build": "tsc",
"postbuild": "cp -r package*.json .npmignore README.md .build",
"test": "jest",
"lint": "xo",
"lint:fix": "xo --fix"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"globals": {
"ts-jest": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"testMatch": [
"**/*.test.ts"
]
},
"keywords": [
"unitpay",
"merchant",
"payment processing",
"payment service"
],
"homepage": "https://github.com/lraarzdy/unitpay-api#readme",
"bugs": {
"url": "https://github.com/lraarzdy/unitpay-api/issues",
"email": "ya.metin-4@ya.ru"
},
"author": {
"name": "Novokshchenov Roman",
"email": "ya.metin-4@ya.ru",
},
"repository": {
"type": "git",
"url": "https://github.com/lraarzdy/unitpay-api"
},
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/qs": "^6.9.7",
"body-parser": "^1.20.0",
"eslint-plugin-jest": "^26.1.3",
"express": "^4.17.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"xo": "^0.48.0"
},
"dependencies": {
"got": "^12.0.3",
"qs": "^6.10.3"
}
}