dice/package.json

34 lines
933 B
JSON
Raw Normal View History

2020-05-05 21:59:03 +02:00
{
"name": "dice",
"version": "1.0.17",
2020-05-05 21:59:03 +02:00
"description": "Calculates the probability of rolling a value given a combination of dice.",
2021-04-28 12:35:38 +02:00
"author": "F.W. Dekker",
2020-05-05 21:59:03 +02:00
"browser": "dist/bundle.js",
"repository": {
"type": "git",
"url": "git@git.fwdekker.com:FWDekker/dice.git"
},
"private": true,
"scripts": {
"clean": "grunt clean",
"dev": "grunt dev",
"dev:server": "grunt dev:server",
"deploy": "grunt deploy"
},
"dependencies": {
2021-11-14 11:14:16 +01:00
"chart.js": "^3.6.0"
2020-05-05 21:59:03 +02:00
},
"devDependencies": {
2021-11-14 11:14:16 +01:00
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
2020-05-05 21:59:03 +02:00
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-focus": "^1.0.0",
"grunt-text-replace": "^0.4.0",
2021-11-14 11:14:16 +01:00
"grunt-webpack": "^5.0.0",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
2020-05-05 21:59:03 +02:00
}
}