forked from GoogleChromeLabs/webbundle-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
{
"name": "webbundle-plugins",
"scripts": {
"test": "npm run build && ava",
"build": "npm run build --workspaces",
"pack": "npm pack --workspace=rollup-plugin-webbundle --workspace=webbundle-webpack-plugin",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:eslint": "eslint --ext .js,.ts,.cjs,.mjs .",
"lint:prettier": "prettier --check {**/*,*}.{cjs,js,ts,md,json} --config ./package.json --no-error-on-unmatched-pattern",
"format": "npm run format:prettier && npm run format:eslint",
"format:eslint": "eslint --ext .js,.ts,.cjs,.mjs --fix .",
"format:prettier": "prettier --write {**/*,*}.{cjs,js,ts,md,json} --config ./package.json --no-error-on-unmatched-pattern",
"update-snapshots": "ava --update-snapshots"
},
"type": "module",
"workspaces": [
"packages/rollup-plugin-webbundle",
"packages/shared",
"packages/webbundle-webpack-plugin"
],
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"@types/mime": "^3.0.1",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"ava": "^4.3.3",
"esbuild": "^0.17.15",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-header": "^3.1.1",
"prettier": "2.8.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">= 16.0.0"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 80,
"proseWrap": "always"
},
"ava": {
"workerThreads": false,
"files": [
"!**/fixtures/**"
]
}
}