-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.53 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
{
"private": true,
"engines": {
"node": "^12 || ^14 || ^16 || ^18 || ^20 || ^22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/stentorium/stentor"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@microsoft/api-documenter": "7.26.3",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@xapp/config": "0.2.3",
"eslint": "8.57.1",
"eslint-plugin-notice": "1.0.0",
"lerna": "7.4.2",
"license-checker": "25.0.1",
"mocha": "11.0.1",
"mocha-junit-reporter": "2.2.1",
"nyc": "17.1.0",
"syncpack": "13.0.0"
},
"scripts": {
"api": "lerna run api",
"docs": "api-documenter markdown -i ./api/json -o ./api/docs",
"lerna": "lerna",
"clean": "lerna run clean",
"clean:modules": "lerna clean",
"lint": "eslint 'packages/**/src/**/*.{ts,tsx}'",
"build": "lerna run build",
"test": "TZ=UTC lerna run test",
"release": "lerna version --yes && git push origin --tags && lerna publish from-git --yes",
"release:pre": "lerna version prerelease --yes --allow-branch $CIRCLE_BRANCH --no-changelog && git push origin --tags && lerna publish from-git --yes",
"license-check": "license-checker --production --start './packages/stentor/' --exclude ISC,MIT,Apache-2.0,BSD-3-Clause,BSD-2-Clause --failOn GPL-3.0",
"version-check": "syncpack list-mismatches --types dev,prod --filter 'stentor-'",
"version-check:all": "syncpack list-mismatches --types dev,prod"
},
"packageManager": "[email protected]"
}