-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "@vivid-web/flexboxgrid-vue",
"version": "1.0.5",
"description": "A simple flexbox CSS grid system with Vue",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup -c build/rollup.config.prod.js",
"dev": "rollup -c build/rollup.config.prod.js -w",
"lint": "eslint .",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/vivid-web/flexboxgrid-vue.git"
},
"keywords": [
"vue",
"flexbox",
"grid",
"vivid",
"web",
"vuejs",
"frontend"
],
"author": "Vivid Websolutions <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vivid-web/flexboxgrid-vue/issues"
},
"homepage": "https://flexboxgrid.vivid-websolutions.nl",
"peerDependencies": {
"vue": "^2.5.16"
},
"dependencies": {
"stylus": "^0.54.5",
"vue": "^2.5.16"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.52",
"@babel/plugin-external-helpers": "^7.0.0-beta.52",
"@babel/preset-env": "^7.0.0-beta.52",
"babel-eslint": "^8.2.5",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-vue": "^4.5.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-uglify": "^4.0.0"
}
}