This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
78 lines (78 loc) · 1.69 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@storybook/storybook-deployer",
"version": "2.8.12",
"description": "Deploy your storybook as a webapp.",
"keywords": [
"deploy",
"github",
"static",
"storybook"
],
"homepage": "https://github.com/storybooks/storybook-deployer#readme",
"bugs": {
"url": "https://github.com/storybooks/storybook-deployer/issues"
},
"license": "MIT",
"author": "Arunoda Susiripala <arunoda@kadira.io>",
"bin": {
"storybook-to-ghpages": "./bin/storybook_to_ghpages",
"storybook-to-aws-s3": "./bin/storybook_to_aws_s3"
},
"scripts": {
"release": "auto shipit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/storybooks/storybook-deployer.git"
},
"dependencies": {
"git-url-parse": "^12.0.0",
"glob": "^7.1.3",
"parse-repo": "^1.0.4",
"shelljs": "^0.8.1",
"yargs": "^15.0.0"
},
"devDependencies": {
"@auto-it/all-contributors": "^9.23.0",
"@auto-it/first-time-contributor": "^9.23.0",
"all-contributors-cli": "^6.14.1",
"auto": "^9.23.0",
"husky": "^1.2.0",
"lint-staged": "^10.0.0",
"prettier": "^1.15.3"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"auto": {
"plugins": [
"npm",
"released",
"first-time-contributor",
[
"all-contributors",
{
"types": {
"plugin": "**/plugin/**/*",
"code": [
"**/src/**/*",
"**/package.json",
"**/tsconfig.json"
]
}
}
]
]
}
}