Skip to content

Commit ebc2796

Browse files
committed
added .idea and node_modules to .gitignore.
added package.json and package-lock.json to allow users to do an `npm install` and be able to build the index.html file
1 parent a6a0979 commit ebc2796

File tree

3 files changed

+334
-0
lines changed

3 files changed

+334
-0
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ Thumbs.db
66
favicon.ico
77
robots.txt
88
sitemap.xml
9+
/.idea
10+
/node_modules

Diff for: package-lock.json

+308
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "walletgenerator.net",
3+
"version": "3.3.0",
4+
"description": "Open Source JavaScript Client-Side Bitcoin Wallet Generator",
5+
"main": "Gruntfile.js",
6+
"dependencies": {
7+
"grunt": "~0.4.1",
8+
"grunt-combine": "~0.8.3",
9+
"grunt-lineending": "~0.2.4"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git://github.com/MichaelMure/WalletGenerator.net.git"
14+
},
15+
"keywords": [
16+
"bitcoin address wallet generator"
17+
],
18+
"author": "MichaelMure",
19+
"license": "MIT",
20+
"readmeFilename": "README.md",
21+
"bugs": {
22+
"url": "https://github.com/MichaelMure/WalletGenerator.net/issues"
23+
}
24+
}

0 commit comments

Comments
 (0)