-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 815 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "apigee-banking",
"version": "1.0.0",
"description": "Apigee Banking Reference Implementation",
"scripts": {
"deployAll": "npm run deploySharedFlows && npm run deployProxies",
"deployProxies": "for DIR in $(ls apiproxies); do cd apiproxies/$DIR && npm run deploy && cd ../.. ; done",
"deploySharedFlows": "for DIR in $(ls sharedflows); do cd sharedflows/$DIR && npm run deploy && cd ../.. ; done",
"generateDocs": "plantuml ./docs-src/auth.flow && claat export ./docs-src/docs.md",
"test": "npx cucumber-js test --tags '@OpenData or @AccountInfo or @PaymentInit'"
},
"keywords": [
"apigee",
"banking"
],
"author": "LaughingBiscuit",
"license": "NONE",
"devDependencies": {
"apickli": "^2.3.1",
"cucumber": "^5.1.0",
"puppeteer": "^1.16.0"
}
}