commit 36a24e937e0ef21a102f9c87823421fe0419a8c0 Author: Jack Grigg Date: Wed May 31 09:36:30 2017 +1200 Project skeleton diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..62562b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +coverage +node_modules diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6d8eeb8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2017 zcashjs-primitives contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/package.json b/package.json new file mode 100644 index 0000000..0402c81 --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "zcashjs-primitives", + "version": "0.1.0", + "description": "Zcash primitives", + "author": "Jack Grigg ", + "license": "MIT", + "main": "src/index.js", + "keywords": [ + "zcash" + ], + "scripts": { + "integration": "mocha test/integration/", + "prepublish": "npm run test", + "standard": "standard", + "test": "npm run standard && npm run unit", + "unit": "mocha" + }, + "devDependencies": { + "mocha": "3.4.2", + "standard": "10.0.2" + } +} diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..631f375 --- /dev/null +++ b/src/index.js @@ -0,0 +1,2 @@ +module.exports = { +}