-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
85 lines (85 loc) · 1.78 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
83
84
85
{
"name": "gamemoney",
"version": "6.0.0",
"description": "GameMoney API wrapper for Node.js",
"keywords": [
"gamemoney",
"gmpays",
"gm",
"merchant"
],
"homepage": "https://github.com/gamemoney-ps/gamemoney-node-sdk#readme",
"bugs": {
"url": "https://github.com/gamemoney-ps/gamemoney-node-sdk/issues",
"email": "[email protected]"
},
"author": {
"name": "Maxim Makarov",
"email": "[email protected]",
"url": "https://maxpain.pro"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gamemoney-ps/gamemoney-node-sdk"
},
"type": "module",
"exports": {
".": {
"import": "./index.js",
"types": "./index.d.ts"
}
},
"scripts": {
"prebuild": "rm -rf .build",
"build": "tsc",
"postbuild": "cp -r package*.json .npmignore ./src/certs README.md .build",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "xo",
"lint:fix": "xo --fix"
},
"lint-staged": {
"*.ts": "xo"
},
"jest": {
"testMatch": [
"**/*.test.ts"
],
"preset": "ts-jest/presets/default-esm",
"globals": {
"ts-jest": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"maxConcurrency": 50
},
"xo": {
"extends": "@onmoon",
"prettier": true
},
"prettier": "@onmoon/prettier-config",
"devDependencies": {
"@onmoon/eslint-config": "^1.0.12",
"@onmoon/prettier-config": "^1.0.2",
"@onmoon/tsconfigs": "^3.0.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.0",
"@types/uuid": "^9.0.2",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"uuid": "^9.0.0",
"xo": "^0.54.2"
},
"dependencies": {
"got": "^12.6.1"
}
}