-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 841 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
25
26
27
28
{
"private": true,
"name": "vinsea-toolkit-monorepo",
"description": "my niubility toolkit",
"author": "Vinsea",
"scripts": {
"packages:bootstrap": "lerna bootstrap --hoist",
"packages:changed": "lerna changed",
"packages:list": "lerna ls --long --all",
"packages:publish": "lerna publish",
"packages:publish-log": "lerna publish --conventional-commits",
"lint": "eslint packages --fix",
"test": "lerna run test",
"clean": "lerna clean && rm -rf node_modules",
"precommit": "npm run lint"
},
"keywords": [
"vinsea",
"toolkit",
"utils"
],
"devDependencies": {
"@vinsea/eslint-plugin-custom": "file:./packages/eslint-custom",
"@vinsea/conventional-changelog-angular": "file:./packages/conventional-changelog-angular",
"eslint": "8.14.0",
"lerna": "^4.0.0"
}
}