forked from honeybadger-io/honeybadger-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "root",
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^18.4.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.20.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-local-rules": "^2.0.1",
"eslint-plugin-promise": "^6.0.0",
"lerna": "^6.0.1"
},
"scripts": {
"prepare": "npm run build",
"build": "lerna run build --stream",
"test": "lerna run test --stream",
"install": "lerna bootstrap",
"lint": "npx eslint .",
"release": "lerna publish --conventional-commits --changelog-preset conventional-changelog-angular --yes --create-release github --loglevel silly",
"clean": "./scripts/clean-repo.sh"
}
}