-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.54 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
{
"private": true,
"name": "nodelib",
"version": "0.0.0",
"description": "A collection of standard libraries for Node.js",
"license": "MIT",
"engines": {
"node": ">=18.18.0"
},
"workspaces": [
"packages/*/*",
"tools/*"
],
"scripts": {
"preversion": "npm run lint:size && npm run lint:npm-package-exports",
"clean": "lerna run --parallel clean",
"lint": "lerna run --parallel lint",
"lint:dependencies": "depend --lerna . --bail --hint --strategy=conservative",
"lint:size": "lerna exec tools-size-limit --no-private --stream",
"lint:npm-package-exports": "lerna exec npm-package-exports-linter --no-private --stream",
"compile": "tsc -b ./packages --verbose",
"test": "lerna run --parallel test",
"build": "npm run clean && npm run compile && npm run lint && npm run test",
"watch": "tsc -b ./packages --watch",
"bench": "lerna run bench --stream"
},
"devDependencies": {
"@lerna-lite/cli": "3.10.0",
"@lerna-lite/exec": "3.10.0",
"@lerna-lite/run": "3.10.0",
"@nodelib-internal/tools.size-limit": "file:tools/size-limit",
"@nodelib-internal/tools.npm-package-exports-linter": "file:tools/npm-package-exports-linter",
"@times-components/depend": "2.3.0",
"@types/mocha": "10.0.9",
"@types/node": "18.19.65",
"@types/sinon": "17.0.3",
"bencho": "0.1.1",
"eslint": "9.14.0",
"eslint-config-mrmlnc": "5.0.0",
"execa": "9.5.1",
"hereby": "1.10.0",
"mocha": "10.8.2",
"rimraf": "6.0.1",
"sinon": "19.0.2",
"typescript": "5.7.2"
}
}