-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
114 lines (114 loc) · 3.03 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "bgio-effects",
"version": "0.7.1",
"description": "📤 Helpers for managing state effects in boardgame.io",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"client/**/*",
"dist/**/*",
"plugin/**/*",
"react/**/*"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"prerelease": "npm t && npm run build",
"release": "standard-version -s",
"lint": "eslint src",
"prettier": "prettier --write --single-quote src",
"pretest": "npm run lint",
"test": "jest --coverage --collectCoverageFrom=src/**/*",
"prepare": "husky install",
"predocs:build": "rm -f bgio-effects-*.tgz && npm run build && npm pack && cd docs && npm i ../bgio-effects-*.tgz && npm i",
"docs:build": "cd docs && npm run build"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"rules": {
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": false,
"argsIgnorePattern": "_.+"
}
]
},
"settings": {
"react": {
"version": "detect"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/delucis/bgio-effects.git"
},
"keywords": [
"side-effect",
"actor-model",
"event",
"emitter",
"react",
"boardgame-io",
"plugin"
],
"author": "Chris Swithinbank <swithinbank@gmail.com> (http://chrisswithinbank.net/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/delucis/bgio-effects/issues"
},
"homepage": "https://delucis.github.io/bgio-effects/",
"devDependencies": {
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.1",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"boardgame.io": "^0.49.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.1",
"jest": "^27.2.0",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.2"
},
"dependencies": {
"mitt": "^3.0.0",
"ts-toolbelt": "^9"
},
"peerDependencies": {
"boardgame.io": ">=0.42.0",
"react": "^16 || ^17"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}