-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
39 lines (39 loc) · 1.71 KB
/
package.json
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
{
"name": "paystack-openapi",
"version": "1.0.0",
"description": "The OpenAPI specification for the Paystack API",
"author": "Damilola Odujoko",
"main": "index.js",
"scripts": {
"build": "pnpm build-main && pnpm build-wallet && pnpm build-membership && pnpm build-marketplace && pnpm build-betting && pnpm build-lending && pnpm build-savings",
"build-main": "swagger-cli bundle main/paystack.yaml --outfile dist/paystack.yaml --type yaml",
"build-wallet": "swagger-cli bundle use_cases/wallet.yaml --outfile dist/wallet.yaml --type yaml",
"build-membership": "swagger-cli bundle use_cases/membership.yaml --outfile dist/membership.yaml --type yaml",
"build-marketplace": "swagger-cli bundle use_cases/marketplace.yaml --outfile dist/marketplace.yaml --type yaml",
"build-betting": "swagger-cli bundle use_cases/betting.yaml --outfile dist/betting.yaml --type yaml",
"build-lending": "swagger-cli bundle use_cases/lending.yaml --outfile dist/lending.yaml --type yaml",
"build-savings": "swagger-cli bundle use_cases/savings.yaml --outfile dist/savings.yaml --type yaml",
"lint": "pnpm lint-main && pnpm lint-sdk",
"lint-main": "spectral lint dist/paystack.yaml",
"lint-sdk": "spectral lint ./sdk/paystack.yaml"
},
"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": {
"@apidevtools/swagger-cli": "^4.0.4",
"@quobix/vacuum": "^0.10.1",
"@redocly/cli": "^1.22.1",
"@stoplight/spectral-cli": "^6.5.1"
}
}