-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "dice.js",
"version": "2.0.0",
"description": "A parser and evaluator for a useful rpg dice syntax.",
"main": "build/dice.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"@types/node": "^16.11.7",
"browserify": "^17.0.0",
"jasmine": "^3.10.0",
"jasmine-browser-runner": "^0.9.0",
"jasmine-core": "^3.10.1",
"jasmine-node": "^3.0.0",
"peggy": "^1.2.0",
"typescript": "^4.4.4"
},
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/lordnull/dice.js.git"
},
"keywords": [
"rpg",
"dice",
"parser",
"roll",
"peg"
],
"author": "Micah Warren (Lord Null)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lordnull/dice.js/issues"
},
"homepage": "https://github.com/lordnull/dice.js"
}