-
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) 路 757 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) 路 757 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,
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^3.4.1",
"npm-run-all": "4.1.x",
"typescript": "~3.4.5"
},
"scripts": {
"test": "run-p test:*",
"test:generator": "yarn --cwd ./packages/@codotype/generator test",
"test:types": "yarn --cwd ./packages/@codotype/types test",
"test:runtime": "yarn --cwd ./packages/@codotype/runtime test",
"test:ui": "yarn --cwd ./packages/@codotype/ui test",
"test:util": "yarn --cwd ./packages/@codotype/util test",
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"build": "lerna run build",
"pub": "lerna publish"
}
}