-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.75 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
60
61
62
63
64
65
66
67
{
"name": "wave-api-client",
"version": "1.0.1",
"description": "TypeScript client for Wave API (African fintech platform)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"docs": "typedoc --out docs src",
"clean": "rimraf dist",
"publish:patch": "npm version patch && git push --follow-tags && npm publish",
"publish:minor": "npm version minor && git push --follow-tags && npm publish",
"publish:major": "npm version major && git push --follow-tags && npm publish"
},
"keywords": [
"wave",
"api",
"client",
"fintech",
"payment",
"africa",
"sdk"
],
"author": "Florent Azonnoudo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flrxnt/wave-api-client.git"
},
"bugs": {
"url": "https://github.com/flrxnt/wave-api-client/issues"
},
"homepage": "https://flrxnt.github.io/wave-api-client",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nock": "^13.3.0",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.1",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.3.5"
},
"engines": {
"node": ">=14.0.0"
}
}