forked from troygoode/node-roll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 3.85 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"author": "Duane Sibilly <[email protected]> (https://github.com/dsibilly/)",
"babel": {
"env": {
"test": {
"plugins": [
"istanbul"
]
}
},
"plugins": [
"transform-line"
],
"presets": [
"@babel/preset-env"
]
},
"bin": {
"dice-tower": "bin/dice-tower"
},
"bugs": {
"url": "https://github.com/dsibilly/dice-tower/issues"
},
"contributors": [
{
"email": "[email protected]",
"name": "Troy Goode",
"web": "https://github.com/troygoode"
},
{
"email": "[email protected]",
"name": "cajahnke",
"web": "https://github.com/cajahnke/"
},
{
"email": "[email protected]",
"name": "Mark Funk"
}
],
"dependencies": {
"@dsibilly/mersenne-twister": "~1.0.3",
"isotropic-error": "~0.10.0",
"isotropic-make": "~0.10.0",
"presage": "~0.2.3"
},
"description": "A Node.js module for rolling dice and adding modifiers, e.g.: 3d6+2. Forked from node-roll.",
"devDependencies": {
"@babel/cli": "~7.5.0",
"@babel/core": "~7.5.4",
"@babel/node": "~7.5.0",
"@babel/preset-env": "~7.5.4",
"@babel/register": "~7.4.4",
"@babel/runtime": "~7.5.4",
"babel-plugin-istanbul": "~5.1.4",
"babel-plugin-transform-line": "~0.8.0",
"chai": "~4.2.0",
"coveralls": "~3.0.5",
"cross-env": "~5.2.0",
"depcheck": "~0.8.0",
"eslint": "~6.0.1",
"eslint-plugin-isotropic": "~0.5.0",
"lodash": ">=4.17.13",
"mocha": "~6.1.4",
"nyc": "~14.1.1",
"pre-commit": "~1.2.2"
},
"engines": {
"node": ">=8",
"npm": ">=6"
},
"eslintConfig": {
"env": {
"es6": true,
"mocha": true,
"node": true
},
"extends": "plugin:isotropic/isotropic",
"parserOptions": {
"ecmaFeatures": {
"globalReturn": false,
"impliedStrict": true,
"jsx": false
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"isotropic"
],
"root": true,
"rules": {
"isotropic/sort-vars": 0,
"sort-imports": 0
}
},
"homepage": "https://github.com/dsibilly/dice-tower/",
"keywords": [
"dice",
"dice tower",
"games",
"random",
"role playing",
"roll",
"rpg"
],
"license": "MIT",
"main": "lib/DiceTower.js",
"name": "@dsibilly/dice-tower",
"nyc": {
"all": true,
"cache": true,
"check-coverage": true,
"include": [
"js/*.js",
"js/*/*.js"
],
"exclude": [
"lib/*"
],
"instrument": false,
"reporter": [
"lcov",
"text-summary"
],
"require": [
"@babel/register"
],
"sourceMap": false
},
"repository": {
"type": "git",
"url": "git://github.com/dsibilly/dice-tower.git"
},
"scripts": {
"build": "BABEL_ENV=build babel js -d lib",
"coverage": "nyc check-coverage",
"lint": "node_modules/.bin/eslint bin/* js",
"posttest": "[ -z \"$npm_config_coverage\" ] || nyc check-coverage",
"prepare": "npm run build",
"prepublishOnly": "npm audit && nyc check-coverage",
"pretest": "npm run lint",
"rebuild": "rm -rf ./node_modules && rm package-lock.json && npm install",
"test": "cross-env BABEL_ENV=test nyc mocha"
},
"version": "1.5.0"
}