mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
106 lines
2.7 KiB
JSON
106 lines
2.7 KiB
JSON
{
|
|
"name": "nuxt",
|
|
"version": "0.9.6",
|
|
"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",
|
|
"next.js",
|
|
"vue ssr"
|
|
],
|
|
"homepage": "https://github.com/nuxt/nuxt.js#readme",
|
|
"bin": {
|
|
"nuxt": "./bin/nuxt"
|
|
},
|
|
"scripts": {
|
|
"test": "nyc ava --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"
|
|
},
|
|
"dependencies": {
|
|
"ansi-html": "^0.0.7",
|
|
"autoprefixer": "^6.7.0",
|
|
"babel-core": "^6.22.1",
|
|
"babel-loader": "^6.2.10",
|
|
"babel-plugin-array-includes": "^2.0.3",
|
|
"babel-plugin-transform-async-to-generator": "^6.22.0",
|
|
"babel-plugin-transform-runtime": "^6.22.0",
|
|
"babel-preset-es2015": "^6.22.0",
|
|
"babel-preset-stage-2": "^6.22.0",
|
|
"chokidar": "^1.6.1",
|
|
"co": "^4.6.0",
|
|
"css-loader": "^0.26.1",
|
|
"debug": "^2.6.0",
|
|
"extract-text-webpack-plugin": "2.0.0-beta.4",
|
|
"file-loader": "^0.9.0",
|
|
"fs-extra": "^2.0.0",
|
|
"glob": "^7.1.1",
|
|
"hash-sum": "^1.0.2",
|
|
"html-minifier": "^3.2.3",
|
|
"lodash": "^4.17.4",
|
|
"lru-cache": "^4.0.2",
|
|
"memory-fs": "^0.4.1",
|
|
"path-to-regexp": "^1.7.0",
|
|
"pify": "^2.3.0",
|
|
"serialize-javascript": "^1.3.0",
|
|
"serve-static": "^1.11.1",
|
|
"url-loader": "^0.5.7",
|
|
"vue": "^2.1.10",
|
|
"vue-loader": "^10.0.2",
|
|
"vue-meta": "^0.5.3",
|
|
"vue-router": "^2.1.3",
|
|
"vue-server-renderer": "^2.1.10",
|
|
"vue-template-compiler": "^2.1.10",
|
|
"vuex": "^2.1.1",
|
|
"webpack": "^2.2.0",
|
|
"webpack-bundle-analyzer": "^2.2.1",
|
|
"webpack-dev-middleware": "^1.9.0",
|
|
"webpack-hot-middleware": "^2.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.17.0",
|
|
"babel-eslint": "^7.1.1",
|
|
"codecov": "^1.0.1",
|
|
"copy-webpack-plugin": "^4.0.1",
|
|
"eslint": "^3.14.0",
|
|
"eslint-config-standard": "^6.2.1",
|
|
"eslint-plugin-html": "^1.7.0",
|
|
"eslint-plugin-promise": "^3.4.0",
|
|
"eslint-plugin-standard": "^2.0.1",
|
|
"finalhandler": "^0.5.1",
|
|
"jsdom": "^9.9.1",
|
|
"json-loader": "^0.5.4",
|
|
"nyc": "^10.1.2",
|
|
"request": "^2.79.0",
|
|
"request-promise-native": "^1.0.3",
|
|
"webpack-node-externals": "^1.5.4"
|
|
}
|
|
}
|