forked from bcdice/bcdice-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.15 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.15 KB
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
{
"name": "bcdice",
"version": "3.6.0",
"description": "BCDice ported for JavaScript",
"keywords": [
"dice"
],
"homepage": "https://github.com/bcdice/bcdice-js#readme",
"bugs": {
"url": "https://github.com/bcdice/bcdice-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcdice/bcdice-js.git"
},
"license": "BSD-3-Clause",
"author": "bcdice",
"main": "lib/index.js",
"files": [
"examples",
"lib",
"ts"
],
"scripts": {
"build": "run-s build:rake build:tsc",
"build:rake": "bundle exec rake",
"build:tsc": "tsc -b ts",
"clean": "rimraf lib patched",
"example": "run-s example:*",
"example:js-basic": "cd examples/js && node ./basic",
"example:js-user_defined_dice_table": "cd examples/js && node ./user_defined_dice_table",
"example:ts-basic": "cd examples/ts && ts-node ./basic",
"example:ts-user_defined_dice_table": "cd examples/ts && ts-node ./user_defined_dice_table",
"lint": "run-s lint:*",
"lint:eslint": "eslint ts/**/*.ts examples/**/*.ts",
"lint:rubocop": "bundle exec rubocop ruby Rakefile",
"lint:lib": "eslint lib",
"test": "cd ts && mocha -r ts-node/register -r source-map-support/register --reporter dot --timeout 5000 --extension ts \"**/*.test.ts\""
},
"dependencies": {
"lodash": "^4.17.20",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.13.0",
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.167",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.17",
"@types/semver": "^7.3.4",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-tsdoc": "^0.2.11",
"mocha": "^9.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semver": "^7.3.4",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}