storybook 0.0.1 → 5.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +3 -2
  2. package/index.js +2 -5
  3. package/package.json +26 -6
package/README.md CHANGED
@@ -1,2 +1,3 @@
1
- # storybook
2
- storybook: nothing to see here
1
+ # Storybook CLI
2
+
3
+ This is a wrapper for https://www.npmjs.com/package/@storybook/cli
package/index.js CHANGED
@@ -1,6 +1,3 @@
1
- function storybook(cb) {
2
- cb = cb || console.log.bind(console);
3
- return cb('storybook');
4
- }
1
+ #!/usr/bin/env node
5
2
 
6
- module.exports = storybook
3
+ require('@storybook/cli/bin/index');
package/package.json CHANGED
@@ -1,11 +1,31 @@
1
1
  {
2
2
  "name": "storybook",
3
- "version": "0.0.1",
4
- "description": "",
5
- "main": "index.js",
3
+ "version": "5.1.11",
4
+ "description": "Storybook CLI",
5
+ "keywords": [
6
+ "storybook"
7
+ ],
8
+ "homepage": "https://github.com/storybookjs/storybook/tree/master/lib/cli",
9
+ "bugs": {
10
+ "url": "https://github.com/storybookjs/storybook/issues"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/storybookjs/storybook.git",
15
+ "directory": "lib/cli"
16
+ },
17
+ "bin": {
18
+ "sb": "./index.js",
19
+ "storybook": "./index.js"
20
+ },
21
+ "license": "MIT",
6
22
  "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
23
+ "prepare": "node ../../scripts/prepare.js"
24
+ },
25
+ "dependencies": {
26
+ "@storybook/cli": "*"
8
27
  },
9
- "author": "gdi2290 <github@gdi2290.com>",
10
- "license": "Apache-2.0"
28
+ "publishConfig": {
29
+ "access": "public"
30
+ }
11
31
  }