Added webpack

This commit is contained in:
Douglas Muth 2017-11-08 21:17:55 -05:00
parent ab7109283d
commit e703f3260f
3 changed files with 3120 additions and 0 deletions

2
.gitignore vendored
View file

@ -2,3 +2,5 @@
# Vim
*.swp
node_modules/

3092
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

26
package.json Normal file
View file

@ -0,0 +1,26 @@
{
"name": "diceware",
"version": "1.0.0",
"description": "First, feel free to check out the live demo, running at [https://www.dmuth.org/diceware/](https://www.dmuth.org/diceware/)",
"main": "main.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmuth/diceware.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dmuth/diceware/issues"
},
"homepage": "https://github.com/dmuth/diceware#readme",
"devDependencies": {
"webpack": "^3.8.1"
}
}