-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·29 lines (29 loc) · 832 Bytes
/
package.json
File metadata and controls
executable file
·29 lines (29 loc) · 832 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
29
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run --parallel clean",
"typedoc": "typedoc",
"mkdocs-publish": "npm run typedoc && cd docs && mkdocs gh-deploy",
"prettier": "prettier ./packages/**/*.ts --write",
"publish": "lerna publish from-package",
"prepublish": "npm run bootstrap && npm run clean && npm run build"
},
"devDependencies": {
"lerna": "3.20.2",
"markdown-table": "^2.0.0",
"prettier": "2.0.2",
"typedoc": "0.17.3",
"typedoc-plugin-external-module-name": "3.0.0",
"typedoc-plugin-markdown": "2.2.17",
"typedoc-plugin-no-inherit": "1.1.10",
"typescript": "3.8.3"
},
"prettier": {
"parser": "typescript",
"printWidth": 120,
"singleQuote": true
}
}