-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.73 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
{
"name": "nosql-sanitize",
"private": true,
"workspaces": [
"packages/*",
"test-servers"
],
"scripts": {
"test": "yarn workspaces foreach -A --parallel run test",
"test:core": "yarn workspace @exortek/nosql-sanitize-core run test",
"test:express": "yarn workspace @exortek/express-mongo-sanitize run test",
"test:fastify": "yarn workspace @exortek/fastify-mongo-sanitize run test",
"test:servers": "node test-servers/run-all-tests.js",
"bench": "node --expose-gc benchmarks/index.js",
"bench:save": "node --expose-gc benchmarks/index.js --save",
"bench:compare": "node --expose-gc benchmarks/index.js --save --compare",
"publish:core": "yarn workspace @exortek/nosql-sanitize-core npm publish --access public --tolerate-republish",
"publish:express": "yarn workspace @exortek/express-mongo-sanitize npm publish --access public --tolerate-republish",
"publish:fastify": "yarn workspace @exortek/fastify-mongo-sanitize npm publish --access public --tolerate-republish",
"publish:all": "yarn workspaces foreach -A --topological --no-private npm publish --access public --tolerate-republish",
"changeset": "changeset",
"changeset:version": "changeset version",
"format": "prettier --write \"**/**/*.{js,ts,json}\"",
"format:check": "prettier --check \"**/**/*.{js,ts,json}\"",
"verify": "yarn format:check && yarn test && yarn test:servers"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@types/express": "^5.0.6",
"express": "npm:express@5.2.1",
"express4": "npm:express@4.22.2",
"fastify": "npm:fastify@5.11.2",
"fastify4": "npm:fastify@4.29.1",
"prettier": "^3.9.6"
},
"packageManager": "yarn@4.17.0",
"engines": {
"node": ">=20.0.0"
}
}