forked from samuelmeuli/font-picker-react
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "font-picker-vue",
"version": "1.0.3",
"description": "Font selector component for Google Fonts",
"keywords": [
"fonts",
"google fonts",
"selector",
"picker",
"component",
"preview",
"download",
"vue",
"vue-component"
],
"main": "lib/FontPicker.js",
"author": "Rodrigo Bendia <[email protected]>",
"repository": "github:rodrigobendia/font-picker-vue",
"homepage": "https://samuelmeuli.github.io/font-picker",
"license": "MIT",
"scripts": {
"start": "npm-run-all build --parallel start:*",
"start:rollup": "rollup --config --sourcemap --watch",
"start:storybook": "start-storybook --port 3001",
"build": "rollup --config",
"lint": "eslint .",
"precommit": "npm run lint",
"prepush": "npm run lint"
},
"dependencies": {
"font-picker": "^2.0.6"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.11",
"@storybook/addon-links": "^3.4.11",
"@storybook/addons": "^3.4.11",
"@storybook/vue": "^3.4.11",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-vue": "^2.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-vue": "^4.7.1",
"husky": "^0.14.3",
"node-sass": "^4.9.3",
"npm-run-all": "^4.1.3",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-vue": "^4.3.2",
"vue": "^2.0.0",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.17"
},
"files": [
"lib/"
]
}