-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.28 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
77
78
79
80
81
{
"name": "bgio-firebase",
"version": "0.5.0",
"description": "🔌 A Firebase database connector for boardgame.io",
"license": "MIT",
"author": "Chris Swithinbank <[email protected]> (http://chrisswithinbank.net/)",
"homepage": "https://github.com/delucis/bgio-firebase#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/delucis/bgio-firebase.git"
},
"bugs": {
"url": "https://github.com/delucis/bgio-firebase/issues"
},
"keywords": [
"boardgame.io",
"firebase",
"firestore"
],
"funding": [
"https://github.com/boardgameio/boardgame.io?sponsor=1",
{
"type": "opencollective",
"url": "https://opencollective.com/boardgameio"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"engines": {
"node": ">=14"
},
"scripts": {
"pretest": "eslint \"{src,test}/**/*.{ts,js}\"",
"jest": "jest --coverage",
"test": "firebase emulators:exec --only firestore 'npm run jest'",
"coverage": "cat ./coverage/lcov.info | coveralls",
"prettier:check": "prettier --list-different \"{src,test}/**/*.ts\"",
"prettier:write": "prettier --write \"{src,test}/**/*.ts\"",
"clean": "rimraf dist .tscache",
"prebuild": "npm run prettier:check && npm run clean",
"build": "tsc -b src",
"prerelease": "npm run test && npm run build",
"release": "standard-version -s",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"boardgame.io": ">=0.41.1",
"commitizen": "^4.0.4",
"coveralls": "^3.0.11",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"firebase-tools": "^11.16.1",
"husky": "^7.0.0",
"jest": "^27.1.0",
"prettier": "^2.0.4",
"rimraf": "^5.0.0",
"standard-version": "^9.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.0.3"
},
"dependencies": {
"firebase-admin": "^11.3.0"
},
"peerDependencies": {
"boardgame.io": ">=0.41.1"
}
}