-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "vue-cli-plugin-storybook",
"version": "3.0.0-rc.1",
"description": "Vue CLI plugin for Storybook",
"main": "./lib/index.js",
"scripts": {
"test": "bash test/test.sh",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/storybookjs/vue-cli-plugin-storybook.git"
},
"keywords": [
"vue",
"vue-cli",
"storybook"
],
"author": "Pavan Kumar Sunkara <pavan.sss1991@gmail.com> (pksunkara.github.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/storybookjs/vue-cli-plugin-storybook/issues"
},
"homepage": "https://github.com/storybookjs/vue-cli-plugin-storybook#readme",
"dependencies": {
"chalk": "^3.0.0",
"commander": "^2.19.0",
"semver": "^7.1.1",
"@vue/cli-shared-utils": "^5.0.0-rc.1"
},
"peerDependencies": {
"@storybook/vue": ">=6.0.0",
"@storybook/vue3": ">=6.2.0"
},
"peerDependenciesMeta": {
"@storybook/vue": {
"optional": true
},
"@storybook/vue3": {
"optional": true
}
},
"devDependencies": {
"@vue/cli": "^5.0.0-rc.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.0"
}
}