-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.72 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
{
"name": "cryptopay-node",
"version": "3.0.0",
"description": "Cryptopay is a payment gateway and business wallet that allows merchants to automate the processes of accepting cryptocurrency payments and payouts from their customers, as well as making currency exchange transactions and receiving data on the transaction history and account balance statuses for reporting.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "tsc && node dist/src/index.js",
"start:dev": "tsc && node dist/src/example/callApi.js",
"build": "tsc",
"doc": "typedoc src/index.ts src/openapi src/openapi/base.ts --out docs --includeVersion --readme none --excludePrivate --excludeProtected",
"test": "jest --clearCache && jest",
"test:dev:path": "jest -- $npm_config_testpath",
"lint": "eslint . --ext .ts ",
"lint:fix": "eslint src --fix "
},
"keywords": [
"cryptopay",
"api"
],
"license": "MIT",
"devDependencies": {
"@types/crypto-js": "^4.0.2",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"install": "^0.13.0",
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"npm": "^8.1.4",
"prettier": "^2.5.1",
"ts-jest": "^27.0.0-next.12",
"typedoc": "^0.22.11",
"typescript": "4.6.2"
},
"bugs": {
"url": "https://github.com/cryptopay-dev/cryptopay-node"
},
"dependencies": {
"@types/node": "^12.20.55",
"axios": "^0.21.4",
"crypto-js": "^4.1.1",
"dotenv": "^10.0.0"
},
"lint-staged": {
"**/*.ts": [
"node_modules/.bin/eslint --max-warnings=0",
"eslint src/**/*.ts"
]
}
}