-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "bundle-size-reporter",
"version": "1.0.0",
"private": true,
"description": "Toolkit for analyzing bundle size",
"scripts": {
"test": "npm run test --ws --if-present",
"dev": "lerna run build -- --watch",
"build": "lerna run build",
"prepare": "husky install",
"eslint": "eslint",
"eslint-all": "eslint --quiet --ext .js,.ts,.mts,.mjs,.cjs ./",
"lint": "npm run eslint-all && npm run prettier-check-all && npm run tsc-check",
"prettier": "prettier",
"prettier-check-all": "prettier --check .",
"prettier-fix-all": "prettier --write .",
"tsc-check": "lerna run tsc-check",
"lerna:publish": "lerna publish from-git --yes",
"lerna:version": "lerna version --conventional-commits --no-private --sign-git-commit --sign-git-tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amalitsky/bundle-size-reporter.git"
},
"type": "module",
"keywords": [
"devtools",
"UI",
"SPA",
"web",
"bundle",
"reporter",
"size",
"automation",
"tools",
"tooling"
],
"author": "Alex Malitsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/amalitsky/bundle-size-reporter/issues"
},
"homepage": "https://github.com/amalitsky/bundle-size-reporter#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@types/node": "^20.10.6",
"eslint": "^8.56.0",
"eslint-config-amalitsky": "^1.0.8",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"lerna": "^8.0.2",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}