vuetify
Version:
Vue.js 2 Semantic Component Framework
142 lines (141 loc) • 4.82 kB
JSON
{
"name": "vuetify",
"version": "1.0.0-beta.5",
"author": {
"name": "John Leider",
"email": "john@vuetifyjs.com"
},
"license": "MIT",
"homepage": "http://vuetifyjs.com",
"repository": "vuetifyjs/vuetify",
"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": "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": "cross-env NODE_ENV=test jest --coverage",
"lint": "eslint --ext .js,.vue src",
"preparecommitmsg": "node dev/prepare-commit-message.js",
"commitmsg": "node dev/lint-commit-message.js",
"precommit": "node dev/warn-npm-install.js && yarn lint && yarn test"
},
"description": "Vue.js 2 Semantic Component Framework",
"devDependencies": {
"autoprefixer": "7.2.5",
"avoriaz": "6.3.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.1",
"babel-jest": "22.1.0",
"babel-loader": "7.1.2",
"babel-plugin-add-filehash": "6.9.5",
"babel-plugin-detective": "2.0.0",
"babel-plugin-module-resolver": "3.0.0",
"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.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"cross-env": "5.1.1",
"cross-spawn": "5.1.0",
"css-loader": "0.28.8",
"css-mqpacker": "6.0.1",
"cssnano": "3.10.0",
"dotenv": "4.0.0",
"eslint": "4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-friendly-formatter": "3.0.0",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eventsource-polyfill": "0.9.6",
"extract-text-webpack-plugin": "3.0.2",
"friendly-errors-webpack-plugin": "1.6.1",
"function-bind": "1.1.1",
"husky": "0.14.3",
"inquirer": "5.0.0",
"jest": "21.2.1",
"jest-cli": "21.2.1",
"jest-css-modules": "1.1.0",
"jest-serializer-html": "5.0.0",
"jest-vue-preprocessor": "1.3.1",
"optimize-css-assets-webpack-plugin": "3.2.0",
"optimize-js-plugin": "0.0.4",
"postcss-loader": "2.0.10",
"progress-bar-webpack-plugin": "1.10.0",
"pug": "2.0.0-rc.4",
"pug-loader": "2.3.0",
"ress": "1.2.2",
"rimraf": "2.6.2",
"semver": "5.4.1",
"serialize-javascript": "1.4.0",
"shelljs": "0.8.0",
"style-loader": "0.19.1",
"stylus": "0.54.5",
"stylus-loader": "3.0.1",
"uglifyjs-webpack-plugin": "1.1.6",
"vue": "2.5.11",
"vue-loader": "13.7.0",
"vue-router": "3.0.1",
"vue-server-renderer": "2.5.11",
"vue-template-compiler": "2.5.11",
"webpack": "3.10.0",
"webpack-bundle-analyzer": "2.9.2",
"webpack-bundle-size-analyzer": "2.7.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "4.1.1",
"write-file-webpack-plugin": "4.2.0"
},
"dependencies": {},
"peerDependencies": {
"vue": "^2.5.0"
},
"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",
"^@components/(.*)$": "<rootDir>/src/components/$1",
"^@directives/(.*)$": "<rootDir>/src/directives/$1",
"^@mixins/(.*)$": "<rootDir>/src/mixins/$1",
"^@util/(.*)$": "<rootDir>/src/util/$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"
]
}
}