@toptal/davinci-storybook 0.0.1
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.
- package/LICENSE.MD +4 -0
- package/README.md +9 -0
- package/package.json +36 -0
- package/src/index.js +1 -0
package/LICENSE.MD
ADDED
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@toptal/davinci-storybook",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Davinci Storybook support project, containing configurations, themes, webpack plugins and related tools",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"storybook",
|
|
10
|
+
"theme",
|
|
11
|
+
"webpack",
|
|
12
|
+
"essentials"
|
|
13
|
+
],
|
|
14
|
+
"author": "Toptal",
|
|
15
|
+
"homepage": "https://github.com/toptal/davinci/tree/master/packages/storybook#readme",
|
|
16
|
+
"license": "ISC",
|
|
17
|
+
"main": "src/index.js",
|
|
18
|
+
"files": [
|
|
19
|
+
"src"
|
|
20
|
+
],
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/toptal/davinci.git"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build:package": "../../bin/build-package.js",
|
|
27
|
+
"prepublishOnly": "../../bin/prepublish.js",
|
|
28
|
+
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
29
|
+
},
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/toptal/davinci/issues"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
package/src/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = {}
|