forked from coreui/coreui-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.22 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@coreui/vue",
"description": "CoreUI Vue Bootstrap 4 layout components",
"version": "2.0.0-rc.0",
"license": "MIT",
"main": "dist/coreui-vue.common.js",
"module": "dist/coreui-vue.esm.js",
"files": [
"src",
"dist/*.js"
],
"homepage": "https://coreui.io",
"author": {
"name": "Łukasz Holeczek",
"url": "http://holeczek.pl",
"github": "https://github.com/mrholek",
"twitter": "https://twitter.com/lukaszholeczek"
},
"contributors": [
{
"name": "Andrzej Kopański",
"url": "https://github.com/xidedix"
}
],
"repository": {
"type": "git",
"url": "https://github.com/coreui/coreui-vue.git"
},
"bugs": {
"url": "https://github.com/coreui/coreui-vue/issues"
},
"keywords": [
"coreui",
"vue",
"vue-component",
"vue-library",
"bootstrap",
"framework",
"responsive",
"layout",
"component",
"components"
],
"engines": {
"node": ">=8.9.0",
"npm": ">= 5.6.0"
},
"scripts": {
"build": "npm run build:cjs && npm run build:es && npm run build:umd:dev && npm run build:umd:prod",
"build:cjs": "rollup -c --environment TARGET:cjs",
"build:es": "rollup -c --environment TARGET:esm",
"build:umd:dev": "rollup -c --environment TARGET:umd-dev",
"build:umd:prod": "rollup -c --environment TARGET:umd-prod",
"precommit": "lint-staged",
"test": "npm run lint && jest --verbose --coverage",
"test:update": "jest --verbose --updateSnapshot",
"test:watch": "jest --verbose --watchAll --notify",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --ext .js,.vue . --fix"
},
"dependencies": {
"vue-perfect-scrollbar": "git://github.com/Degfy/vue-perfect-scrollbar.git#1.x"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.4",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-vue-app": "^2.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-vue": "^4.5.0",
"husky": "^0.14.3",
"jest": "^22.4.4",
"jest-serializer-html": "^5.0.0",
"jest-serializer-vue": "^1.0.0",
"jest-vue-preprocessor": "^1.4.0",
"lint-staged": "^7.1.3",
"lodash": "^4.17.10",
"node-sass": "^4.9.0",
"prettier": "^1.13.4",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-license": "^0.6.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-plugin-vue": "^4.2.0",
"sass-loader": "^7.0.3",
"uglify-es": "^3.3.9",
"vue": "^2.5.16",
"vue-jest": "^2.6.0",
"vue-loader": "^14.2.2",
"vue-server-renderer": "^2.5.16",
"vue-template-compiler": "^2.5.16",
"vue-test-utils": "^1.0.0-beta.11"
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
}
}