forked from vuetifyjs/vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.4 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "vuetify",
"version": "0.16.8",
"author": {
"name": "John Leider",
"email": "john@vuetifyjs.com"
},
"license": "MIT",
"homepage": "http://vuetifyjs.com",
"main": "dist/vuetify.js",
"unpkg": "dist/vuetify.js",
"types": "index.d.ts",
"scripts": {
"watch": "cross-env TARGET=development webpack --config build/config.js --progress --hide-modules --watch",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.config.js --open --hot",
"build": "npm run build:dist && npm run build:es5",
"build:dev": "cross-env NODE_ENV=production node build/webpack.dev.config.js",
"build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config build/config.js --progress --hide-modules",
"build:es5": "rimraf es5 && cross-env NODE_ENV=es5 babel src --out-dir es5",
"debug-build": "node --inspect --debug-brk build/config.js",
"debug:test": "./node_modules/.bin/cross-env NODE_ENV=test node --inspect --inspect-brk ./node_modules/jest/bin/jest.js --no-cache --runInBand --verbose",
"test": "cross-env NODE_ENV=test jest -i",
"lint": "eslint --ext .js,.vue src",
"preparecommitmsg": "node dev/prepare-commit-message.js",
"precommit": "yarn run lint && yarn test",
"prepush": "yarn run lint && yarn test"
},
"description": "Vue.js 2 Semantic Component Framework",
"devDependencies": {
"autoprefixer": "^7.1.4",
"avoriaz": "^4.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-add-filehash": "^6.9.4",
"babel-plugin-detective": "^2.0.0",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.0.5",
"cross-spawn": "^5.1.0",
"css-loader": "^0.28.7",
"css-mqpacker": "^6.0.1",
"cssnano": "^3.10.0",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-vue": "^2.0.2",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^3.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"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.1.1",
"husky": "^0.14.3",
"jest": "^21.1.0",
"jest-cli": "^21.1.0",
"jest-css-modules": "^1.1.0",
"jest-serializer-html": "^4.0.0",
"jest-vue-preprocessor": "^1.1.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"optimize-js-plugin": "^0.0.4",
"postcss-loader": "^1.3.3",
"progress-bar-webpack-plugin": "^1.10.0",
"pug": "^2.0.0-rc.4",
"pug-loader": "^2.3.0",
"ress": "^1.1.1",
"rimraf": "^2.6.2",
"semver": "^5.4.1",
"serialize-javascript": "^1.3.0",
"style-loader": "^0.18.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"uglifyjs-webpack-plugin": "^0.4.6",
"vue": "^2.5.2",
"vue-loader": "^13.3.0",
"vue-router": "^2.7.0",
"vue-server-renderer": "^2.5.2",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-bundle-size-analyzer": "^2.7.0",
"webpack-dev-server": "^2.8.2",
"webpack-merge": "^4.1.0",
"write-file-webpack-plugin": "^4.1.0"
},
"dependencies": {},
"peerDependencies": {
"vue": "^2.4.3"
},
"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)"
],
"snapshotSerializers": [
"jest-serializer-html"
]
}
}