-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 982 Bytes
/
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
{
"name": "mono",
"private": true,
"description": "A monorepo of TypeScript libraries I maintain",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/remusao/mono.git"
},
"author": "Rémi Berson",
"license": "MPL-2.0",
"workspaces": [
"./packages/*"
],
"scripts": {
"bootstrap": "yarn install --frozen-lock && lerna bootstrap",
"lint": "lerna run --parallel lint",
"build": "lerna run build",
"test": "lerna run --concurrency 1 test",
"pretest": "yarn build",
"clean": "lerna run --parallel clean && lerna clean --yes"
},
"devDependencies": {
"@remusao/auto-config": "^1.1.1",
"auto": "^11.1.6",
"lerna": "^4.0.0",
"typescript": "5.5.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"auto": {
"extends": "@remusao/auto-config",
"name": "Rémi Berson",
"email": "[email protected]"
},
"packageManager": "[email protected]"
}