-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.9 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "h4bff",
"version": "1.0.0",
"description": "End-to-end framework and inversion of control container for building modular web apps based on Plug-In architecture.",
"main": "doesnt-exist",
"repository": {
"type": "git",
"url": "git+https://github.com/hfour/h4bff.git"
},
"keywords": [
"plugin",
"framework"
],
"author": "Andrej T.",
"license": "MIT",
"private": "true",
"bugs": {
"url": "https://github.com/hfour/h4bff/issues"
},
"homepage": "https://github.com/hfour/h4bff#readme",
"workspaces": [
"packages/*"
],
"workspace-sources": {
"@h4bff/*": [
"packages/*/src"
]
},
"devDependencies": {
"@microsoft/api-extractor": "^7.7.10",
"docsify-tools": "^1.0.20",
"gh-pages": "^2.0.1",
"prettier": "^1.15.3",
"typescript": "^3.4.5",
"wsrun": "^5.0.0"
},
"scripts": {
"build": "wsrun --stages -r build",
"watch": "wsrun --stages -r --done-criteria='Watches established|Watching for file changes' watch",
"test": "jest",
"test:coverage": "jest --coverage",
"clean": "git clean -fdx packages/*/build",
"prettier": "prettier --list-different **/*.ts '**/*.md' **/*.json",
"prettier:fix": "prettier --write **/*.ts '**/*.md' **/*.json",
"docs": "rm -rf docs-dist && mkdir -p docs-dist/2-API && cp -r docs/* docs-dist/ && wsrun -p @h4bff/backend @h4bff/core @h4bff/frontend -c api-extractor run --local && cp packages/*/docs-json/*.api.json docs-dist/2-API && generate-ts-docs markdown -i docs-dist/2-API -o docs-dist/2-API && docsify-init -d docs-dist -e docs && docsify-auto-sidebar -d docs-dist && rm -rf packages/*/docs-json/*.api.json",
"docs:publish": "gh-pages -d docs-dist --dotfiles"
},
"jest": {
"verbose": true,
"projects": [
"<rootDir>/packages/core",
"<rootDir>/packages/backend",
"<rootDir>/packages/frontend",
"<rootDir>/packages/example"
]
}
}