-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.01 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1.01 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
{
"name": "bold-api-sdk",
"version": "0.2.1",
"description": "A Node.js library for interacting with the Bold API, providing seamless integration to manage payments, customers, and transactions efficiently.",
"main": "src/app.js",
"repository": "https://github.com/boterop/bold-api-sdk",
"author": "Santiago Botero Pelaez",
"license": "MIT",
"types": "src/app.d.ts",
"scripts": {
"start": "node --env-file .env --watch src/app.js",
"test": "NODE_ENV=test node --experimental-vm-modules --max-old-space-size=8192 node_modules/jest/bin/jest.js --runInBand",
"build": "mkdir -p dist && cp -r src/ dist/ && cp package.json dist/ && cp README.md dist/ && cp LICENSE dist/ && cp CHANGELOG.md dist/ && cd dist && npm i --omit=dev",
"format": "prettier --write .",
"check-format": "prettier -c .",
"lint": "eslint ."
},
"devDependencies": {
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-sonarjs": "^3.0.1",
"jest": "^29.7.0",
"prettier": "^3.4.2"
}
}