-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "mahjong-tile-efficiency",
"version": "1.0.3",
"description": "Tile efficiency calculation for several Mahjong variants",
"keywords": [
"Mahjong",
"Tile Efficiency",
"Riichi",
"MCR",
"Zung Jung",
"Shanten",
"Ukeire"
],
"main": "index.js",
"files": [
"/src/*",
"index.js",
"index.d.ts"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"lint:js": "eslint --ext \".js\" --ignore-path .gitignore .",
"lintfix": "npm run lint:js -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garyleung142857/mahjong-tile-efficiency.git"
},
"author": "garyleung142857 (https://github.com/garyleung142857)",
"license": "MIT",
"bugs": {
"url": "https://github.com/garyleung142857/mahjong-tile-efficiency/issues"
},
"homepage": "https://github.com/garyleung142857/mahjong-tile-efficiency#readme",
"devDependencies": {
"eslint": "^8.39.0",
"jest": "^29.5.0"
},
"type": "module"
}