-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.06 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
{
"name": "pipsync-api-collections",
"version": "0.1.0",
"private": true,
"description": "Dependency-free Postman and Bruno collections generated from the public PipSync OpenAPI contract",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pipsyncio/pipsync-api-collections.git"
},
"homepage": "https://github.com/pipsyncio/pipsync-api-collections#readme",
"keywords": [
"pipsync",
"postman",
"bruno",
"openapi",
"api-client"
],
"scripts": {
"generate": "node scripts/generate.mjs",
"check:generated": "node scripts/generate.mjs --check",
"check:contracts": "node scripts/verify.mjs",
"check:source": "node scripts/check-source-sync.mjs",
"check:secrets": "node scripts/check-secrets.mjs",
"test:unit": "node --test tests/*.test.mjs",
"test": "npm run check:generated && npm run check:contracts && npm run check:source && npm run check:secrets && npm run test:unit",
"mock": "node scripts/mock-server.mjs"
}
}