This repository has been archived by the owner on Dec 22, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.25 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
{
"name": "@anolilab/blitz-webpack-utils",
"version": "1.0.4",
"description": "Webpack utils for Blitz.js",
"keywords": [
"anolilab",
"blitz",
"blitzjs",
"webpack",
"Blitz.js"
],
"repository": "github:anolilab/blitz-webpack-utils",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/prisis"
},
{
"type": "consulting",
"url": "https://anolilab.com/support"
}
],
"license": "MIT",
"author": {
"name": "Daniel Bannert",
"email": "[email protected]",
"url": "https://github.com/prisis"
},
"main": "./dist/index.js",
"module": "./dist/index.module.mjs",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"scripts": {
"lint:staged": "yarn check:node && lint-staged",
"lint:text": "yarn check:node && textlint \"./packages/**/README.md\" ./README.md ./UPGRADE.md --parallel --experimental --format=esm,cjs",
"lint:text:fix": "yarn check:node && yarn run lint:text --fix",
"prettier": "yarn check:node && prettier --config=.prettierrc.cjs --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"build": "yarn check:node && microbundle build --compress --strict --raw --target node",
"lint": "yarn check:node && cross-env NO_LOGS=true eslint -c ./.eslintrc.cjs --ext .js,.ts ./src",
"lint:fix": "yarn check:node && yarn run lint --fix",
"test": "yarn check:node && jest",
"jest:watch": "yarn check:node && jest --watch",
"snapupdate": "yarn check:node && jest --updateSnapshot",
"check:node": "node verify-node-version.cjs"
},
"lint-staged": {
"*.{js,jsx,tsx,ts,less,md,json,css,scss,sass}": "prettier --config=.prettierrc.cjs --write",
"*.{js,jsx,ts,tsx}": "eslint -c ./.eslintrc.cjs --fix"
},
"devDependencies": {
"@anolilab/babel-preset": "^5.0.0",
"@anolilab/eslint-config": "^4.0.0",
"@anolilab/prettier-config": "^3.0.0",
"@anolilab/semantic-release-preset": "^2.0.0",
"@anolilab/textlint-config": "^4.0.0",
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-syntax-jsx": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.3",
"@types/jest": "^28.0.0",
"@types/node": "16.11.42",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.0.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.0",
"jest": "^28.0.0",
"jest-mock": "^28.0.0",
"lint-staged": "^13.0.0",
"microbundle": "^0.15.0",
"prettier": "^2.3.2",
"semantic-release": "^19.0.0",
"sort-package-json": "^1.50.0",
"ts-jest": "^28.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}