Skip to content

Commit

Permalink
added .idea and node_modules to .gitignore.
Browse files Browse the repository at this point in the history
added package.json and package-lock.json to allow users to do an `npm install` and be able to build the index.html file
  • Loading branch information
tvl83 committed Sep 2, 2017
1 parent a6a0979 commit ebc2796
Show file tree
Hide file tree
Showing 3 changed files with 334 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ Thumbs.db
favicon.ico
robots.txt
sitemap.xml
/.idea
/node_modules
308 changes: 308 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "walletgenerator.net",
"version": "3.3.0",
"description": "Open Source JavaScript Client-Side Bitcoin Wallet Generator",
"main": "Gruntfile.js",
"dependencies": {
"grunt": "~0.4.1",
"grunt-combine": "~0.8.3",
"grunt-lineending": "~0.2.4"
},
"repository": {
"type": "git",
"url": "git://github.com/MichaelMure/WalletGenerator.net.git"
},
"keywords": [
"bitcoin address wallet generator"
],
"author": "MichaelMure",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/MichaelMure/WalletGenerator.net/issues"
}
}

0 comments on commit ebc2796

Please sign in to comment.