-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.41 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
56
57
58
59
{
"name": "rolld20",
"version": "1.0.7",
"repository": "https://github.com/marcosem/rolld20.git",
"author": "Marcos Mathias <[email protected]>",
"decription": "A simple tool designed to roll dices, of any side d2 (flip coin), d3, d4, d6, d8, d12, d20, d30, d60, d100, d1000, and jan-ken-po.",
"keywords": [
"dice",
"roll",
"d2",
"d3",
"d4",
"d6",
"d8",
"d10",
"d12",
"d20",
"d30",
"d60",
"d100",
"d1000",
"jan-ken-po",
"rock",
"paper",
"scissors",
"bomb"
],
"bugs": {
"url": "https://github.com/marcosem/rolld20/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"typescript": "4.1.5"
},
"files": [
"dist/**/*"
]
}