-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.32 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
{
"name": "@datastream/monorepo",
"version": "0.0.40",
"description": "Streams made easy.",
"private": true,
"type": "module",
"engines": {
"node": ">=18"
},
"engineStrict": true,
"scripts": {
"prepare": "husky install",
"commit-msg": "commitlint --config commitlint.config.cjs --edit",
"pre-commit": "lint-staged",
"install": "lerna bootstrap",
"lint": "prettier --write packages/*/*.js && standard --fix packages/*/*.js",
"start": "docsify serve docs",
"test": "npm run build && c8 node --test --conditions=node packages && c8 node --test --conditions=webstream packages",
"build": "bin/esbuild",
"release:tag": "git tag $npm_package_version && git push --tags",
"lerna:rm": "npm run lerna:rm:node_modules && npm run lerna:rm:lock",
"lerna:rm:lock": "lerna exec -- rm -rf package-lock.json",
"lerna:rm:node_modules": "lerna exec -- rm -rf node_modules",
"lerna:update": "lerna exec --bail --concurrency 5 npm update && npm install",
"lerna:outdated": "lerna exec --concurrency 5 npm outdated",
"lerna:audit": "lerna exec --concurrency 2 npm audit fix",
"lerna:sync": "lerna publish --exact --yes --skip-npm --skip-git --repo-version $npm_package_version",
"lerna:publish": "npm run lint && npm run build && lerna publish --exact --yes --skip-git --repo-version $npm_package_version",
"lerna:publish:next": "npm run lint && npm run build && lerna publish --exact --yes --skip-git --repo-version $npm_package_version --dist-tag next"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willfarrell/datastream.git"
},
"keywords": [
"datastream",
"Stream",
"Web Stream API",
"NodeJS Stream"
],
"author": {
"name": "Middy contributors",
"url": "https://github.com/willfarrell/datastream/graphs/contributors"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/willfarrell/datastream/issues"
},
"homepage": "https://datastream.js.org",
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"benchmark": "^2.1.4",
"c8": "^10.0.0",
"docsify-cli": "^4.4.4",
"esbuild": "^0.24.0",
"husky": "^8.0.0",
"lerna": "^6.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"sinon": "^19.0.0",
"standard": "^17.0.0"
}
}