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",
|
2022-02-06 17:26:40 -05:00
|
|
|
"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": {
|
2022-12-07 21:21:22 -05:00
|
|
|
"mocha": "^10.1.0",
|
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"
|
2017-11-08 23:27:15 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-03-12 17:08:21 -05:00
|
|
|
"buffer": "^6.0.3",
|
|
|
|
"crypto-browserify": "^3.12.0",
|
2022-12-11 22:37:26 -05:00
|
|
|
"cypress": "^12.0.2",
|
2021-03-12 17:08:21 -05:00
|
|
|
"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
|
|
|
}
|
|
|
|
}
|