-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 KB
/
package.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "dice-roller-parser",
"version": "0.1.8",
"description": "A javascript dice roller that parses roll20 format strings and generates rolled outputs",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && pegjs src/diceroll.pegjs && tslint -c tslint.json --project tsconfig.json && webpack",
"clean": "rimraf dist/ src/diceroll.js",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BTMorton/dice_roller.git"
},
"keywords": [
"dice",
"roller",
"roll",
"roll20",
"rpg",
"trpg",
"tabletop",
"dnd",
"d&d",
"dungeons",
"dragons",
"pathfinder"
],
"author": "Ben Morton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BTMorton/dice_roller/issues"
},
"homepage": "https://github.com/BTMorton/dice_roller#readme",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"jest": "^25.1.0",
"pegjs": "^0.10.0",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}