-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.16 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.16 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mini-browser",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"test": "jest",
"prepare": "husky install",
"lint": "eslint --fix --ext .ts packages/*/src/**.ts",
"commit": "git-cz",
"preinstall": "npx only-allow pnpm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wendraw/mini-browser.git"
},
"keywords": [],
"author": "wendraw",
"license": "MIT",
"bugs": {
"url": "https://github.com/wendraw/mini-browser/issues"
},
"homepage": "https://github.com/wendraw/mini-browser#readme",
"devDependencies": {
"@changesets/cli": "^2.18.1",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@microsoft/api-extractor": "^7.19.3",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.3.4",
"@types/jest": "^27.0.2",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"brotli": "^1.3.2",
"chalk": "^4.1.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"husky": "^7.0.0",
"jest": "^27.3.1",
"minimist": "^1.2.5",
"prettier": "^2.5.1",
"rollup": "^2.56.3",
"rollup-plugin-polyfill-node": "^0.7.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.7",
"tslib": "^2.4.0",
"typescript": "^4.4.2",
"zlib": "^1.0.5"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "pnpm@7.6.0"
}