forked from microsoft/just
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 889 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
{
"name": "just-repo",
"version": "1.0.1",
"private": true,
"description": "",
"keywords": [],
"license": "MIT",
"author": "",
"main": "index.js",
"scripts": {
"build": "lerna run --stream build",
"postbuild": "node ./scripts/copyReadme.js",
"build:docs": "lerna run --scope just-task-docs build",
"change": "beachball change",
"checkchange": "beachball check",
"publish:beachball": "beachball publish",
"start": "lerna run start --parallel",
"test": "lerna run test",
"lint": "eslint packages --ext .ts,.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"beachball": "^1.9.2",
"eslint": "^6.0.1",
"lerna": "^3.13.2"
},
"workspaces": {
"packages": [
"packages/*",
"packages/documentation/website",
"scripts"
]
}
}