-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "game-room-poker",
"version": "0.0.0",
"description": "A poker plugin module for Game Room",
"author": "Adam Lacoste <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/adamlacoste/game-room-poker#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/adamlacoste/game-room-poker.git"
},
"bugs": {
"url": "https://github.com/adamlacoste/game-room-poker/issues"
},
"main": "main.cjs",
"exports": {
"import": "./main.mjs",
"require": "./main.cjs"
},
"type": "module",
"scripts": {
"doc": "./scripts/generate_docs.sh",
"lint": "./node_modules/.bin/eslint -c config/eslint.json",
"postversion": "git push --tags origin main",
"preversion": "npm run lint -- lib/* && npm test && npm run doc",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --config config/jest.json",
"version": "git add doc/ test/coverage"
},
"dependencies": {
"card-sharp": "^0.2.3"
},
"devDependencies": {
"dmd-clear": "^0.1.2",
"eslint": "^7.32.0",
"jest": "^27.2.5",
"jsdoc-to-markdown": "^7.0.1"
},
"engines": {
"node": "^14.18.0",
"npm": "^6.14.15"
}
}