rolldicejs
Version:
JavaScript library written in TypeScript for generating dice rolls
32 lines • 766 B
JSON
{
"name": "rolldicejs",
"version": "1.2.3",
"description": "JavaScript library written in TypeScript for generating dice rolls",
"files": [
"lib/**/*"
],
"main": "lib/Dice.js",
"types": "lib/Dice.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run format && npm run build",
"start": "npm run format && npm run build"
},
"keywords": [
"Node",
"Random",
"Dice",
"Games"
],
"homepage": "https://github.com/Xoelos/rolldicejs",
"author": "Samuel Krohn",
"license": "ISC",
"devDependencies": {
"prettier": "^2.4.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.2"
}
}