-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "@educorzo/poker-library",
"version": "1.1.1",
"description": "Tools for playing poker",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"source": "src/index.js",
"scripts": {
"test": "karma start karma.conf",
"test-ci": "karma start karma.conf --browsers ChromeHeadless --single-run",
"build": "microbundle",
"prepublish": "npm run build"
},
"keywords": [
"poker",
"hands",
"compare",
"random"
],
"author": "eduardo corzo <[email protected]> (https://github.com/educorzo)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.7.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-compat": "^3.8.0",
"karma": "^5.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"karma-eslint": "^2.2.0",
"microbundle": "^0.12.3",
"webpack": "^4.44.1",
"webpack-karma-jasmine": "^4.0.0"
},
"dependencies": {},
"files": [
"dist",
"index.d.ts",
"index.js.flow",
"package.json",
"README.md"
]
}