-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.01 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.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
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
{
"name": "aegispay",
"version": "0.1.0",
"description": "Production-grade payment orchestration SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:prod": "tsc --project tsconfig.prod.json",
"dev": "tsc --watch",
"example": "npx ts-node src/example.ts",
"test": "jest",
"test:ci": "jest --config=jest.config.ci.js --coverage --coverageReporters=text --coverageReporters=lcov --coverageReporters=json-summary",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "jest tests/e2e",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
"benchmark": "npx ts-node src/benchmark/cli.ts",
"benchmark:tps": "npx ts-node src/benchmark/cli.ts --tps",
"benchmark:latency": "npx ts-node src/benchmark/cli.ts --latency",
"benchmark:concurrent": "npx ts-node src/benchmark/cli.ts --concurrent",
"lint": "eslint src/**/*.ts --quiet",
"lint:fix": "eslint src/**/*.ts --fix --quiet",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test",
"ci": "npm run lint && npm run typecheck && npm run test:coverage && npm run benchmark",
"validate": "npm run ci"
},
"keywords": [
"payment",
"orchestration",
"payment-gateway",
"sdk",
"payment-processing"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"uuid": "^9.0.0"
}
}