mirror of
https://github.com/dmuth/diceware.git
synced 2024-11-23 17:26:34 -05:00
Added webpack
This commit is contained in:
parent
ab7109283d
commit
e703f3260f
3 changed files with 3120 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,3 +2,5 @@
|
|||
# Vim
|
||||
*.swp
|
||||
|
||||
node_modules/
|
||||
|
||||
|
|
3092
package-lock.json
generated
Normal file
3092
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
26
package.json
Normal file
26
package.json
Normal 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"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue