-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.58 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"clear": "lerna run clear",
"precoverage": "trash ./coverage",
"coverage": "npm run coverage:build && nyc npm run test:execute && npm run build",
"coverage:build": "lerna run coverage:build",
"coverage:remove_nyc_output": "trash ./.nyc_output",
"postcoverage": "npm run coverage:remove_nyc_output",
"test": "npm run build && npm run test:execute",
"test:clear": "lerna run test:clear",
"test:execute": "lerna run test",
"test:latest": "lerna run --since main build && lerna run --since main test",
"lerna:publish_dev": "lerna publish from-package --dist-tag dev"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/eslint-plugin": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.3.7",
"cpx2": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"fs-extra": "^11.1.1",
"git-cliff": "^1.2.0",
"lerna": "^7.1.3",
"lerna-update-wizard": "^1.1.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"trash-cli": "^5.0.0"
}
}