-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.02 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.02 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
{
"name": "paystack-openapi",
"version": "1.0.0",
"description": "The OpenAPI specification for the Paystack API",
"author": "Damilola Odujoko",
"main": "src/index.js",
"type": "module",
"scripts": {
"bundle": "pnpm bundle:main && pnpm bundle:usecases",
"bundle:betting": "redocly bundle ./src/assets/use_cases/betting.yaml --output dist/betting.yaml",
"bundle:lending": "redocly bundle ./src/assets/use_cases/lending.yaml --output dist/lending.yaml",
"bundle:marketplace": "redocly bundle ./src/assets/use_cases/marketplace.yaml --output dist/marketplace.yaml",
"bundle:membership": "redocly bundle ./src/assets/use_cases/membership.yaml --output dist/membership.yaml",
"bundle:savings": "redocly bundle ./src/assets/use_cases/savings.yaml --output dist/savings.yaml",
"bundle:wallet": "redocly bundle ./src/assets/use_cases/wallet.yaml --output dist/wallet.yaml",
"bundle:main": "redocly bundle ./src/assets/openapi/openapi.yaml --output dist/paystack.yaml --remove-unused-components",
"bundle:usecases": "pnpm bundle:wallet && pnpm bundle:membership && pnpm bundle:marketplace && pnpm bundle:betting && pnpm bundle:lending && pnpm bundle:savings",
"dev": "pnpm bundle && pnpm start",
"lint": "pnpm lint:main && pnpm lint:sdk",
"lint:main": "spectral lint dist/paystack.yaml",
"lint:sdk": "spectral lint ./sdk/paystack.yaml",
"split": "redocly split ./src/assets/base/paystack.yaml --outDir=./src/assets/openapi",
"start": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/PaystackOSS/openapi.git"
},
"keywords": [
"Paystack",
"OpenAPI"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PaystackOSS/openapi/issues"
},
"homepage": "https://github.com/PaystackOSS/openapi#readme",
"devDependencies": {
"@quobix/vacuum": "^0.10.1",
"@redocly/cli": "^2.0.5",
"@stoplight/spectral-cli": "^6.15.0",
"express": "^5.1.0",
"nodemon": "^3.1.10",
"open": "^10.2.0",
"yaml": "^2.8.1"
}
}