forked from vuetifyjs/vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.44 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.44 KB
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
114
115
116
117
{
"name": "vuetify",
"version": "0.13.1",
"author": {
"name": "John Leider",
"email": "john.j.leider@gmail.com"
},
"license": "MIT",
"homepage": "http://vuetifyjs.com",
"main": "dist/vuetify.js",
"scripts": {
"dev": "cross-env TARGET=dev webpack --config build/config.js --progress --hide-modules --watch",
"build": "rimraf dist && cross-env NODE_ENV=production node build/build.js --progress --hide-modules",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"e2e": "node test/e2e/runner.js",
"test": "cross-env NODE_ENV=test jest --no-cache",
"lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs"
},
"description": "Vue.js 2 Semantic Component Framework",
"devDependencies": {
"autoprefixer": "^6.6.0",
"avoriaz": "^2.4.2",
"babel": "^6.23.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-add-filehash": "^6.9.4",
"babel-plugin-module-resolver": "^2.7.1",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^1.1.3",
"chromedriver": "^2.21.2",
"cross-env": "^3.1.3",
"cross-spawn": "^4.0.2",
"css-loader": "^0.23.1",
"css-mqpacker": "^6.0.1",
"cssnano": "^3.10.0",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.1.0",
"eslint-config-vue": "^2.0.2",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^1.3.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-pug": "^1.0.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^2.1.0",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^3.0.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"function-bind": "^1.0.2",
"jest": "^20.0.4",
"jest-css-modules": "^1.1.0",
"jest-vue-preprocessor": "^0.2.0",
"lolex": "^1.4.0",
"nightwatch": "^0.9.8",
"opn": "^4.0.2",
"optimize-css-assets-webpack-plugin": "^2.0.0",
"optimize-js-plugin": "^0.0.4",
"ora": "^0.3.0",
"phantomjs-prebuilt": "^2.1.3",
"postcss-loader": "^1.2.1",
"precss": "^1.4.0",
"pug": "^2.0.0-beta3",
"pug-loader": "^2.3.0",
"ress": "^1.1.1",
"rimraf": "^2.5.4",
"selenium-server": "2.53.1",
"semver": "^5.3.0",
"serialize-javascript": "^1.3.0",
"shelljs": "^0.7.4",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.1",
"vue-loader": "^10.1.0",
"vue-router": "^2.7.0",
"vue-server-renderer": "^2.4.1",
"vue-template-compiler": "^2.4.1",
"webpack": "^3.2.0",
"webpack-bundle-size-analyzer": "^2.7.0",
"webpack-merge": "^0.17.0"
},
"dependencies": {
"uglifyjs-webpack-plugin": "^0.4.6",
"vue": "^2.4.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"jest": {
"verbose": false,
"roots": [
"<rootDir>/src"
],
"moduleFileExtensions": [
"js",
"vue"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"src/(.*)": "<rootDir>/src/$1"
},
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor",
"\\.(styl)$": "<rootDir>/node_modules/jest-css-modules",
".*\\.(vue|js)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!vue-router)"
]
}
}