Skip to content

Commit

Permalink
first commit 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
tinovyatkin committed Oct 13, 2019
1 parent 8b1acdf commit 8d33eea
Show file tree
Hide file tree
Showing 4 changed files with 1,040 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.tgz
node_modules/
package-lock.json
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": false,
"parser": "json"
}
25 changes: 25 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "@walletpass/json-schemas",
"version": "1.0.0",
"description": "JSON schemas for Apple Wallet Passes files",
"main": "./pass.schema.json",
"scripts": {
"test": "jest"
},
"files": ["*.schema.json"],
"repository": {
"type": "git",
"url": "git+https://github.com/walletpass/json-schemas.git"
},
"keywords": ["json", "schema", "apple", "wallet", "pass", "passkit"],
"author": "Konstantin Vyatkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/walletpass/json-schemas/issues"
},
"homepage": "https://github.com/walletpass/json-schemas#readme",
"devDependencies": {
"ajv": "6.10.2",
"prettier": "1.18.2"
}
}
Loading

0 comments on commit 8d33eea

Please sign in to comment.