forked from kripod/mental-poker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2 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
{
"name": "cypherpoker",
"version": "0.2.0",
"description": "CypherPoker API based on the thesis of Choongmin Lee.",
"author": "Kristóf Poduszló <kripod@protonmail.com>",
"license": "MIT",
"keywords": [
"mental",
"poker"
],
"engines": {
"node": ">=4"
},
"main": "./lib/index.js",
"files": [
"lib",
"src"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"start": "cd ./bench && babel ./ | node",
"build": "cross-env NODE_ENV=production babel ./src -d ./lib -s",
"watch": "npm run build -- -w",
"prepublish": "npm run build",
"lint": "eslint ./src ./test ./bench && documentation lint ./src",
"test": "cross-env NODE_ENV=test nyc -r lcov -r text ava -v && npm run lint",
"doc": "documentation build ./src -o ./docs -c ./documentation.yml -f html -g"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"bn.js": "^4.11.6",
"elliptic": "^6.3.1",
"es6-error": "^3.0.1",
"pokersolver": "^2.1.2"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-istanbul": "^2.0.0",
"babel-plugin-syntax-flow": "^6.13.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-preset-latest": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.14.0",
"benchmark": "^2.1.1",
"cross-env": "^2.0.1",
"documentation": "^4.0.0-beta9",
"eslint": "^3.4.0",
"eslint-config-airbnb-base": "^5.0.3",
"eslint-plugin-flowtype": "^2.11.4",
"eslint-plugin-import": "^1.14.0",
"nyc": "^8.1.0"
},
"ava": {
"babel": "inherit"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "https://github.com/cypherpoker/cypherpoker-js.git"
},
"bugs": {
"url": "https://github.com/cypherpoker/cypherpoker-js/issues"
}
}