UNPKG

1.73 kBJSONView Raw
1{
2 "name": "@storybook/storybook-deployer",
3 "version": "2.8.11",
4 "description": "Deploy your storybook as a webapp.",
5 "keywords": [
6 "deploy",
7 "github",
8 "static",
9 "storybook"
10 ],
11 "homepage": "https://github.com/storybooks/storybook-deployer#readme",
12 "bugs": {
13 "url": "https://github.com/storybooks/storybook-deployer/issues"
14 },
15 "license": "MIT",
16 "author": "Arunoda Susiripala <arunoda@kadira.io>",
17 "bin": {
18 "storybook-to-ghpages": "./bin/storybook_to_ghpages",
19 "storybook-to-aws-s3": "./bin/storybook_to_aws_s3"
20 },
21 "scripts": {
22 "release": "auto shipit"
23 },
24 "repository": {
25 "type": "git",
26 "url": "git+https://github.com/storybooks/storybook-deployer.git"
27 },
28 "dependencies": {
29 "git-url-parse": "^11.1.2",
30 "glob": "^7.1.3",
31 "parse-repo": "^1.0.4",
32 "shelljs": "^0.8.1",
33 "yargs": "^15.0.0"
34 },
35 "devDependencies": {
36 "@auto-it/all-contributors": "^9.23.0",
37 "@auto-it/first-time-contributor": "^9.23.0",
38 "all-contributors-cli": "^6.14.1",
39 "auto": "^9.23.0",
40 "husky": "^1.2.0",
41 "lint-staged": "^10.0.0",
42 "prettier": "^1.15.3"
43 },
44 "prettier": {
45 "singleQuote": true
46 },
47 "husky": {
48 "hooks": {
49 "pre-commit": "lint-staged"
50 }
51 },
52 "lint-staged": {
53 "*.{js,json,css,md}": [
54 "prettier --write",
55 "git add"
56 ]
57 },
58 "auto": {
59 "plugins": [
60 "npm",
61 "released",
62 "first-time-contributor",
63 [
64 "all-contributors",
65 {
66 "types": {
67 "plugin": "**/plugin/**/*",
68 "code": [
69 "**/src/**/*",
70 "**/package.json",
71 "**/tsconfig.json"
72 ]
73 }
74 }
75 ]
76 ]
77 }
78}