-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "@guidebooks/store",
"version": "8.0.1",
"description": "The home for importable Guidebooks.",
"main": "index.js",
"scripts": {
"prepack": "madwizard mirror $PWD/guidebooks $PWD/dist/store && find dist/store -name '*.md' -exec rm {} \\;",
"mirror": "T=$(mktemp -d) && madwizard mirror $PWD/guidebooks $T/store",
"test": "npm run mirror"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/guidebooks/store.git"
},
"keywords": [
"markdown",
"wizards",
"documentation"
],
"author": "@starpit",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/guidebooks/store/issues"
},
"homepage": "https://github.com/guidebooks/store#readme",
"devDependencies": {
"madwizard-cli-core": "^8.0.13"
},
"publishConfig": {
"access": "public"
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
},
"@release-it/bumper": {
"out": [
"guidebooks/ml/mlflow/start/kubernetes/install.sh",
"guidebooks/ml/tensorboard/start/kubernetes/install.sh",
"guidebooks/ml/ray/start/kubernetes/install-via-helm.sh"
]
}
}
}
}