diceware/package.json
2021-03-13 17:52:23 -05:00

40 lines
1.1 KiB
JSON

{
"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": "mocha ./tests/test.js",
"clean": "rm -rfv dist/*bundle.js* node_modules package-lock.json",
"build": "npm install; webpack --mode production",
"dev-build": "npm install; webpack --watch --mode development"
},
"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": {
"mocha": "^8.3.2",
"should": "^13.1.3",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"process": "^0.11.10",
"random-number-csprng": "^1.0.2",
"stream-browserify": "^3.0.0",
"vm-browserify": "^1.1.2"
}
}