diceware/package.json

42 lines
1.2 KiB
JSON
Raw Normal View History

2017-11-08 21:17:55 -05:00
{
"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": {
2021-03-12 17:08:21 -05:00
"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",
"release-build": "rm -fv diceware.zip; pushd .. > /dev/null; zip -r diceware.zip diceware/; popd > /dev/null; mv ../diceware.zip ."
2017-11-08 21:17:55 -05:00
},
"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": {
2021-03-13 17:52:23 -05:00
"mocha": "^8.3.2",
2017-11-09 22:06:03 -05:00
"should": "^13.1.3",
2021-03-12 17:08:21 -05:00
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0"
},
"dependencies": {
2021-03-12 17:08:21 -05:00
"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"
2017-11-08 21:17:55 -05:00
}
}