forked from re-rxjs/react-rxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.19 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.19 KB
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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"bundlewatch": {
"ci": {
"trackBranches": [
"main"
]
},
"files": [
{
"path": "./packages/core/dist/core.cjs.production.min.js",
"maxSize": "4 kB",
"compression": "none"
},
{
"path": "./packages/dom/dist/dom.cjs.production.min.js",
"maxSize": "1 kB",
"compression": "none"
},
{
"path": "./packages/utils/dist/utils.cjs.production.min.js",
"maxSize": "4 kB",
"compression": "none"
}
]
},
"scripts": {
"build": "wsrun -t build",
"lint": "wsrun lint",
"format": "wsrun format",
"test": "wsrun test"
},
"prettier": {
"printWidth": 80,
"semi": false,
"trailingComma": "all"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"typescript": "^3.9.7",
"wsrun": "^5.2.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint"
}
}
}