-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.68 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
{
"private": true,
"name": "rayo",
"workspaces": [
"packages/benchmarks",
"packages/compress",
"packages/rayo",
"packages/send",
"packages/storm"
],
"type": "module",
"engines": {
"node": ">=24"
},
"author": {
"name": "Stefan Aichholzer",
"email": "theaichholzer@gmail.com",
"url": "https://github.com/aichholzer"
},
"repository": {
"type": "git",
"url": "https://github.com/GetRayo/rayo.js.git"
},
"homepage": "https://github.com/GetRayo/rayo.js",
"scripts": {
"lint": "eslint --quiet .",
"eslint:fix": "eslint --quiet --fix .",
"test": "npm run lint && npm run test:types && LOG_LEVEL=debug c8 --reporter=cobertura mocha --fail-zero -R progress --timeout 5000 test/index.js",
"test:types": "tsc -p test/types/tsconfig.json && tsc -p test/types/tsconfig.bundler.json",
"unit": "LOG_LEVEL=debug mocha --fail-zero -R spec --timeout 5000 test/index.js",
"posttest": "c8 report --reporter=text",
"copies": "node scripts/prepare-packages.mjs",
"pack:check": "npm pack --workspaces --dry-run --json | node scripts/check-packages.mjs",
"release:version": "lerna version --force-publish --yes --no-git-tag-version --no-push --ignore-scripts",
"release:publish": "lerna publish from-package --yes",
"update": "npm update"
},
"devDependencies": {
"@types/node": "^26.5.0",
"c8": "^12.0.0",
"eslint": "^10.10.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.12.0",
"lerna": "^10.0.1",
"mocha": "^12.0.0",
"prettier": "^3.9.6",
"should": "^13.2.3",
"sinon": "^22.1.0",
"supertest": "^7.2.2",
"typescript": "^7.0.2"
}
}