-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
74 lines (74 loc) · 1.76 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
{
"name": "poker-odds-calculator",
"version": "0.3.1",
"description": "A pre-flop and post-flop odds calculator for Texas Holdem",
"bin": {
"poker-odds-calculator": "./dist/bin/poker-odds-calculator.js"
},
"main": "./dist/index.js",
"typings": "./dts/index.d.ts",
"scripts": {
"build": "rm -rf dist/* && rm -rf dts/* && tsc",
"lint": "tslint --project tsconfig.json -e ./src/bin/*.ts ./src/{,**/}*.ts ./tests/{,**/}*.ts --format verbose",
"test": "NODE_ENV=test mocha --recursive --timeout 4000 --require ts-node/register --bail test/**/*.ts",
"cover": "NODE_ENV=test nyc --report-dir coverage npm t"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rundef/node-poker-odds-calculator.git"
},
"keywords": [
"poker",
"odds",
"equity"
],
"author": "Mickael Burguet <www.rundef.com>",
"license": "MIT",
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"@ssense/tslint-config": "^4.0.0",
"@types/chai": "^3.4.34",
"@types/chalk": "^0.4.31",
"@types/commander": "^2.3.31",
"@types/lodash": "^4.14.52",
"@types/mocha": "^2.2.37",
"@types/node": "^7.0.0",
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"ts-node": "^7.0.0",
"tslint": "^4.3.1",
"tslint-microsoft-contrib": "^4.0.0",
"typescript": "^2.1.5"
},
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"node_modules",
"dts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"lcov"
],
"all": true
}
}