Indent me

This commit is contained in:
Alexander Cerutti
2021-02-05 08:13:22 +01:00
parent d017a38ac9
commit b51b7591bf
4 changed files with 70 additions and 66 deletions

View File

@@ -1,34 +1,36 @@
{
"formatVersion": 1,
"passTypeIdentifier": "pass.com.example.myapp",
"serialNumber": "nmyuxofgna",
"teamIdentifier": "F53WB8AE67",
"webServiceURL": "https://192.168.1.254:80/",
"authenticationToken": "vxwxd7J8AlNNFPS8k0a0FfUFtq0ewzFdc",
"relevantDate": "2011-12-08T13:00-08:00",
"locations": [
{
"longitude": -122.3748889,
"latitude": 37.6189722
},
{
"longitude": -122.03118,
"latitude": 37.33182
}
],
"barcodes": [{
"message": "123456789",
"format": "PKBarcodeFormatQR",
"messageEncoding": "iso-8859-1"
}],
"barcode": {
"message": "123456789",
"format": "PKBarcodeFormatQR",
"messageEncoding": "iso-8859-1"
},
"organizationName": "Apple Inc.",
"description": "A Booking pass",
"foregroundColor": "rgb(255, 255, 255)",
"backgroundColor": "rgb(253, 123, 35)",
"boardingPass": {}
"formatVersion": 1,
"passTypeIdentifier": "pass.com.example.myapp",
"serialNumber": "nmyuxofgna",
"teamIdentifier": "F53WB8AE67",
"webServiceURL": "https://192.168.1.254:80/",
"authenticationToken": "vxwxd7J8AlNNFPS8k0a0FfUFtq0ewzFdc",
"relevantDate": "2011-12-08T13:00-08:00",
"locations": [
{
"longitude": -122.3748889,
"latitude": 37.6189722
},
{
"longitude": -122.03118,
"latitude": 37.33182
}
],
"barcodes": [
{
"message": "123456789",
"format": "PKBarcodeFormatQR",
"messageEncoding": "iso-8859-1"
}
],
"barcode": {
"message": "123456789",
"format": "PKBarcodeFormatQR",
"messageEncoding": "iso-8859-1"
},
"organizationName": "Apple Inc.",
"description": "A Booking pass",
"foregroundColor": "rgb(255, 255, 255)",
"backgroundColor": "rgb(253, 123, 35)",
"boardingPass": {}
}

View File

@@ -1,25 +1,25 @@
{
"name": "examples",
"version": "0.0.0",
"description": "Passkit-generator examples",
"author": "Alexander P. Cerutti <cerutti.alexander@gmail.com>",
"license": "ISC",
"scripts": {
"preinstall": "npm run clear:deps && npm unlink --no-save passkit-generator && cd .. && npm run build && npm link && cd examples && npm link passkit-generator",
"example": "cd build && node",
"build": "npm run build:clear && npx tsc",
"build:clear": "rm -rf build",
"clear:deps": "rm -rf node_modules"
},
"dependencies": {
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"tslib": "^2.1.0",
"passkit-generator": "latest"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node-fetch": "^2.5.0",
"typescript": "^4.1.3"
}
"name": "examples",
"version": "0.0.0",
"description": "Passkit-generator examples",
"author": "Alexander P. Cerutti <cerutti.alexander@gmail.com>",
"license": "ISC",
"scripts": {
"preinstall": "npm run clear:deps && npm unlink --no-save passkit-generator && cd .. && npm run build && npm link && cd examples && npm link passkit-generator",
"example": "cd build && node",
"build": "npm run build:clear && npx tsc",
"build:clear": "rm -rf build",
"clear:deps": "rm -rf node_modules"
},
"dependencies": {
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"tslib": "^2.1.0",
"passkit-generator": "latest"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node-fetch": "^2.5.0",
"typescript": "^4.1.3"
}
}