forked from olegpolyakov/yookassa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 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
{
"name": "yookassa-ts",
"version": "0.1.14",
"description": "YooKassa TypeScript API for Node.js",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix --no-eslintrc --config ./.eslintrc.js --report-unused-disable-directives --format codeframe --ext js,ts,vue .",
"pub": "sh publish.sh",
"changelog": "yarn auto-changelog",
"print-version": "node -p \"'v' +require('./package.json').version\""
},
"dependencies": {
"axios": "^1.4.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"auto-changelog": "^2.4.0",
"eslint": "8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-prettier": "^4.2.1",
"itsbz-onever": "^1.0.15",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,ts}": [
"lint --fix"
]
},
"keywords": [
"yookassa",
"yookassa-ts"
],
"author": {
"name": "Andrey Zolotarev",
"email": "[email protected]"
},
"repository": "https://github.com/zolotarev/yookassa-ts",
"license": "MIT"
}