dice-wizard
Version:
A utility package for rolling dice with various configurations
52 lines • 1.31 kB
JSON
{
"name": "dice-wizard",
"version": "0.0.1",
"description": "A utility package for rolling dice with various configurations",
"main": "dist/dice-wizard.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jmichaliga/dice-wizard.git"
},
"bugs": {
"url": "https://github.com/jmichaliga/dice-wizard/issues"
},
"homepage": "https://github.com/jmichaliga/dice-wizard#readme",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"dice",
"roller",
"random",
"game",
"threes"
],
"author": "Justin Michaliga (justin.michaliga@gmail.com)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"ts-loader": "^9.5.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": ["**/__tests__/**/*.test.ts"],
"moduleFileExtensions": ["ts", "js", "json"]
}
}