forked from vuetifyjs/vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
156 lines (156 loc) · 5.24 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "vuetify",
"version": "1.2.3",
"author": {
"name": "John Leider",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "http://vuetifyjs.com",
"repository": "vuetifyjs/vuetify",
"main": "dist/vuetify.js",
"module": "dist/vuetify.js",
"jsdelivr": "dist/vuetify.js",
"types": "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 --hot",
"build": "concurrently \"yarn build:dist --no-progress\" \"yarn build:es5\" -n\"dist,es5\" --kill-others-on-fail -r",
"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 es5-temp && tsc -p tsconfig.dist.json && cross-env NODE_ENV=es5 babel es5-temp --out-dir es5 --source-maps -q",
"debug-build": "node --inspect --debug-brk build/config.js",
"debug:test": "cross-env NODE_ENV=test node --inspect --inspect-brk ./node_modules/jest/bin/jest.js --no-cache -i --verbose",
"test": "node build/run-tests.js",
"test:unix": "cross-env NODE_ENV=test jest",
"test:win32": "cross-env NODE_ENV=test jest -i",
"test:coverage": "yarn test --coverage",
"test:types": "tsc -p ./types/test/tsconfig.json",
"lint": "concurrently \"tsc --noEmit --pretty\" \"tslint -p . -c .tslint.js src/**/*.ts -t stylish\" \"eslint --ext .js,.ts src\" \"yarn test:types\" --kill-others-on-fail -n \"tsc,tslint,eslint,types\"",
"preparecommitmsg": "node dev/prepare-commit-message.js",
"commitmsg": "node dev/lint-commit-message.js",
"precommit": "node dev/warn-npm-install.js && concurrently \"yarn test\" \"yarn lint\" -n \"test,lint\" --kill-others-on-fail"
},
"description": "Vue.js 2 Semantic Component Framework",
"devDependencies": {
"@mdi/font": "^2.6.95",
"@types/jest": "^22.2.3",
"@types/node": "^10.5.8",
"autoprefixer": "^9.1.1",
"avoriaz": "^6.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-detective": "2.0.0",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-transform-define": "^1.3.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"concurrently": "^3.6.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.0.5",
"dotenv": "^6.0.0",
"eslint": "^5.3.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-local-rules": "^0.1.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-typescript": "^0.12.0",
"eslint-plugin-vue": "^4.7.1",
"file-loader": "^1.1.11",
"fork-ts-checker-webpack-plugin": "^0.4.8",
"friendly-errors-webpack-plugin": "^1.7.0",
"happypack": "^5.0.0",
"husky": "^0.14.3",
"inquirer": "^6.1.0",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"jest-css-modules": "^1.1.0",
"jest-serializer-html": "^5.0.0",
"mini-css-extract-plugin": "^0.4.1",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^3.0.0",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"shelljs": "^0.8.2",
"style-loader": "^0.22.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"ts-jest": "^21.2.1",
"ts-loader": "^4.4.2",
"tslint": "^5.11.0",
"tslint-loader": "^3.6.0",
"tslint-stylish": "^2.1.0",
"typescript": "^3.0.1",
"typescript-eslint-parser": "^18.0.0",
"typestrict": "^0.0.9",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"vue": "^2.5.17",
"vue-loader": "^15.3.0",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.17",
"vue-template-es2015-compiler": "^1.6.0",
"vuetify-loader": "^0.2.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4"
},
"dependencies": {},
"peerDependencies": {
"vue": "^2.5.10"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"jest": {
"verbose": false,
"roots": [
"<rootDir>/test/unit",
"<rootDir>/test/integration"
],
"moduleFileExtensions": [
"ts",
"js"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"^@/test$": "<rootDir>/test/index.js",
"^@/test/(.*)$": "<rootDir>/test/$1",
"^@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"\\.(styl)$": "jest-css-modules",
".*\\.(j|t)s$": "ts-jest"
},
"mapCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts,tsx}"
],
"transformIgnorePatterns": [
"node_modules/(?!vue-router)"
],
"snapshotSerializers": [
"jest-serializer-html"
],
"globals": {
"ts-jest": {
"useBabelrc": true
}
}
}
}