Nuxt/package.json

132 lines
3.6 KiB
JSON

{
"name": "nuxt",
"version": "1.0.0-alpha1",
"description": "A minimalistic framework for server-rendered Vue.js applications (inspired by Next.js)",
"contributors": [
{
"name": "Sebastien Chopin"
},
{
"name": "Alexandre Chopin"
}
],
"main": "./index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js"
},
"files": [
"bin",
"dist",
"index.js"
],
"keywords": [
"nuxt",
"nuxt.js",
"nuxtjs",
"vue",
"vue.js",
"vuejs",
"vue universal",
"vue ssr",
"vue isomorphic",
"vue versatile"
],
"homepage": "https://github.com/nuxt/nuxt.js#readme",
"bin": {
"nuxt": "./bin/nuxt"
},
"scripts": {
"test": "npm run lint && nyc ava --verbose --serial test/",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint --ext .js,.vue bin lib pages test/*.js --ignore-pattern lib/app",
"build": "webpack",
"watch": "webpack --watch",
"precommit": "npm run lint",
"prepublish": "npm run build",
"postinstall": "opencollective postinstall"
},
"engines": {
"node": ">=4.3.0 <5.0.0 || >=5.10",
"npm": ">=3.0.0"
},
"dependencies": {
"ansi-html": "^0.0.7",
"autoprefixer": "^7.1.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-vue-app": "^1.2.0",
"chokidar": "^1.7.0",
"compression": "^1.6.2",
"connect": "^3.6.2",
"css-loader": "^0.28.1",
"debug": "^2.6.6",
"etag": "^1.8.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"fresh": "^0.5.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"fs-extra": "^3.0.1",
"glob": "^7.1.1",
"hash-sum": "^1.0.2",
"html-minifier": "^3.5.0",
"html-webpack-plugin": "^2.28.0",
"lodash": "^4.17.4",
"memory-fs": "^0.4.1",
"offline-plugin": "^4.7.0",
"opencollective": "^1.0.3",
"pify": "^2.3.0",
"post-compile-webpack-plugin": "^0.1.1",
"preload-webpack-plugin": "^1.2.2",
"progress-bar-webpack-plugin": "^1.9.3",
"script-ext-html-webpack-plugin": "^1.8.0",
"serialize-javascript": "^1.3.0",
"serve-static": "^1.12.2",
"url-loader": "^0.5.8",
"vue": "~2.3.3",
"vue-loader": "^12.1.0",
"vue-meta": "^1.0.4",
"vue-router": "^2.5.3",
"vue-server-renderer": "~2.3.3",
"vue-ssr-html-stream": "^2.2.0",
"vue-template-compiler": "~2.3.3",
"vuex": "^2.3.1",
"webpack": "^2.5.1",
"webpack-bundle-analyzer": "^2.8.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-eslint": "^7.2.3",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^2.2.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-html": "^2.0.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"finalhandler": "^1.0.2",
"jsdom": "^10.1.0",
"json-loader": "^0.5.4",
"nyc": "^10.3.2",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"std-mocks": "^1.0.1",
"webpack-node-externals": "^1.6.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/nuxtjs",
"logo": "https://opencollective.com/nuxtjs/logo.txt?reverse=true&variant=variant2"
}
}