-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (40 loc) · 1011 Bytes
/
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
{
"name": "yookassa-payouts",
"author": "DonVietnam",
"version": "1.0.0",
"description": "A package for implementing massive pauouts using the Yookassa api.",
"license": "MIT",
"keywords": [
"vietnam",
"nodejs",
"payouts",
"yookassa",
"yandex",
"money"
],
"repository": {
"type": "git",
"url": "https://github.com/DonVietnam/yookassa-payouts"
},
"bugs": {
"url": "https://github.com/DonVietnam/yookassa-payouts/issues"
},
"homepage": "https://github.com/DonVietnam/yookassa-payouts",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon --signal SIGTERM --exec \"node src/app.js\"",
"dev-fix": "nodemon --exec \"npm run fix && node src/app.js\"",
"lint": "eslint --ignore-path .gitignore .",
"fix": "eslint --fix --ignore-path .gitignore ."
},
"engines": {
"node": "^12.9 || 14 || 16"
},
"dependencies": {
},
"devDependencies": {
"eslint": "^7.8.1",
"nodemon": "^2.0.4"
}
}