contingent
Version:
Create cryptographically-strong random numbers in node.js or the browser
51 lines (50 loc) • 1.27 kB
JSON
{
"name": "contingent",
"version": "0.1.9",
"description": "Create cryptographically-strong random numbers in node.js or the browser",
"main": "lib/index.js",
"scripts": {
"build": "tsc && npm run build-dist",
"build-dist": "webpack --config ./dist/webpack.config.js",
"clean": "rm -rf lib",
"test": "mocha lib/**/*.spec.js",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jabney/contingent.git"
},
"keywords": [
"crypto",
"cryptographically",
"strong",
"random",
"numbers",
"browser",
"contingent"
],
"author": "James Abney",
"license": "MIT",
"bugs": {
"url": "https://github.com/jabney/contingent/issues"
},
"homepage": "https://github.com/jabney/contingent#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"babel-loader": "^8.0.6",
"mocha": "^6.1.4",
"typescript": "^3.4.3",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"files": [
"lib/*.js",
"lib/*.d.ts",
"dist/contingent.js",
"dist/contingent.min.js"
]
}