Skip to content

Commit 611eca1

Browse files
committed
chore: lint
Signed-off-by: will Farrell <willfarrell@proton.me>
1 parent 2b9695d commit 611eca1

File tree

1 file changed

+63
-63
lines changed

1 file changed

+63
-63
lines changed

package.json

Lines changed: 63 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,65 @@
11
{
2-
"name": "@datastream/monorepo",
3-
"version": "0.0.42",
4-
"description": "Streams made easy.",
5-
"private": true,
6-
"type": "module",
7-
"engines": {
8-
"node": ">=24"
9-
},
10-
"engineStrict": true,
11-
"scripts": {
12-
"prepare": "husky",
13-
"preinstall": "npm link --workspaces",
14-
"git:pre-commit": "npm run git:lint-staged && npm run git:test-staged",
15-
"git:commit-msg": "commitlint --config commitlint.config.cjs --edit",
16-
"git:lint-staged": "biome check --staged --no-errors-on-unmatched --files-ignore-unknown=true",
17-
"git:test-staged": "which node && node -v && node --test",
18-
"lint": "npm run build && biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
19-
"start": "docsify serve docs",
20-
"build": "bin/esbuild",
21-
"test": "npm run build && npm run test:unit:node && npm run test:unit:web",
22-
"test:unit:node": "node --test --conditions=node --experimental-test-coverage --test-coverage-lines=82 --test-coverage-branches=89 --test-coverage-functions=85",
23-
"test:unit:web": "node --test --conditions=webstream --experimental-test-coverage --test-coverage-lines=89 --test-coverage-branches=92 --test-coverage-functions=87",
24-
"rm": "npm run rm:coverage && npm run rm:node_modules && npm run rm:lock",
25-
"rm:lock": "find . -name 'pacakge-lock.json' -type d -prune -exec rm -rf '{}' +",
26-
"rm:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
27-
"update": "npm update --workspaces && npm install --workspaces",
28-
"outdated": "npm outdated --workspaces",
29-
"audit": "npm audit fix --workspaces",
30-
"publish": "npm publish --workspaces",
31-
"release:sync": "npm version $npm_package_version --workspaces && find ./packages -name \"package.json\" -exec sed -i '' -E \"s|\\\"@datastream/(.*)\\\": ([^,]*)|\\\"@datastream/\\1\\\": $(npm pkg get version)|g\" {} \\; && npm run rm:node_modules && npm link --workspaces && npm install"
32-
},
33-
"repository": {
34-
"type": "git",
35-
"url": "git+https://github.com/willfarrell/datastream.git"
36-
},
37-
"keywords": [
38-
"datastream",
39-
"Stream",
40-
"Web Stream API",
41-
"NodeJS Stream"
42-
],
43-
"author": {
44-
"name": "Middy contributors",
45-
"url": "https://github.com/willfarrell/datastream/graphs/contributors"
46-
},
47-
"license": "MIT",
48-
"bugs": {
49-
"url": "https://github.com/willfarrell/datastream/issues"
50-
},
51-
"homepage": "https://datastream.js.org",
52-
"devDependencies": {
53-
"@biomejs/biome": "^2.0.0",
54-
"@commitlint/cli": "^20.0.0",
55-
"@commitlint/config-conventional": "^20.0.0",
56-
"fast-check": "^4.0.0",
57-
"husky": "^9.0.0",
58-
"tinybench": "^5.0.0",
59-
"docsify-cli": "^4.0.0",
60-
"esbuild": "^0.27.0"
61-
},
62-
"workspaces": [
63-
"packages/*"
64-
]
2+
"name": "@datastream/monorepo",
3+
"version": "0.0.42",
4+
"description": "Streams made easy.",
5+
"private": true,
6+
"type": "module",
7+
"engines": {
8+
"node": ">=24"
9+
},
10+
"engineStrict": true,
11+
"scripts": {
12+
"prepare": "husky",
13+
"preinstall": "npm link --workspaces",
14+
"git:pre-commit": "npm run git:lint-staged && npm run git:test-staged",
15+
"git:commit-msg": "commitlint --config commitlint.config.cjs --edit",
16+
"git:lint-staged": "biome check --staged --no-errors-on-unmatched --files-ignore-unknown=true",
17+
"git:test-staged": "which node && node -v && node --test",
18+
"lint": "npm run build && biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
19+
"start": "docsify serve docs",
20+
"build": "bin/esbuild",
21+
"test": "npm run build && npm run test:unit:node && npm run test:unit:web",
22+
"test:unit:node": "node --test --conditions=node --experimental-test-coverage --test-coverage-lines=82 --test-coverage-branches=89 --test-coverage-functions=85",
23+
"test:unit:web": "node --test --conditions=webstream --experimental-test-coverage --test-coverage-lines=89 --test-coverage-branches=92 --test-coverage-functions=87",
24+
"rm": "npm run rm:coverage && npm run rm:node_modules && npm run rm:lock",
25+
"rm:lock": "find . -name 'pacakge-lock.json' -type d -prune -exec rm -rf '{}' +",
26+
"rm:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
27+
"update": "npm update --workspaces && npm install --workspaces",
28+
"outdated": "npm outdated --workspaces",
29+
"audit": "npm audit fix --workspaces",
30+
"publish": "npm publish --workspaces",
31+
"release:sync": "npm version $npm_package_version --workspaces && find ./packages -name \"package.json\" -exec sed -i '' -E \"s|\\\"@datastream/(.*)\\\": ([^,]*)|\\\"@datastream/\\1\\\": $(npm pkg get version)|g\" {} \\; && npm run rm:node_modules && npm link --workspaces && npm install"
32+
},
33+
"repository": {
34+
"type": "git",
35+
"url": "git+https://github.com/willfarrell/datastream.git"
36+
},
37+
"keywords": [
38+
"datastream",
39+
"Stream",
40+
"Web Stream API",
41+
"NodeJS Stream"
42+
],
43+
"author": {
44+
"name": "Middy contributors",
45+
"url": "https://github.com/willfarrell/datastream/graphs/contributors"
46+
},
47+
"license": "MIT",
48+
"bugs": {
49+
"url": "https://github.com/willfarrell/datastream/issues"
50+
},
51+
"homepage": "https://datastream.js.org",
52+
"devDependencies": {
53+
"@biomejs/biome": "^2.0.0",
54+
"@commitlint/cli": "^20.0.0",
55+
"@commitlint/config-conventional": "^20.0.0",
56+
"fast-check": "^4.0.0",
57+
"husky": "^9.0.0",
58+
"tinybench": "^5.0.0",
59+
"docsify-cli": "^4.0.0",
60+
"esbuild": "^0.27.0"
61+
},
62+
"workspaces": [
63+
"packages/*"
64+
]
6565
}

0 commit comments

Comments
 (0)