Nuxt/package.json

130 lines
3.6 KiB
JSON
Raw Normal View History

2016-10-26 11:40:55 +00:00
{
"name": "nuxt",
2017-04-29 23:31:42 +00:00
"version": "0.10.7",
2016-10-26 11:40:55 +00:00
"description": "A minimalistic framework for server-rendered Vue.js applications (inspired by Next.js)",
2016-11-28 16:10:29 +00:00
"contributors": [
{
"name": "Sebastien Chopin"
},
{
"name": "Alexandre Chopin"
}
],
2017-01-11 21:18:23 +00:00
"main": "./index.js",
2016-10-26 11:40:55 +00:00
"license": "MIT",
2016-11-28 16:10:29 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js"
},
2016-12-09 17:54:17 +00:00
"files": [
"bin",
2017-01-11 21:18:23 +00:00
"dist",
"index.js"
2016-12-09 17:54:17 +00:00
],
2016-11-28 16:10:29 +00:00
"keywords": [
"nuxt",
"nuxt.js",
"nuxtjs",
"vue",
"vue.js",
"vuejs",
2017-02-12 10:47:44 +00:00
"vue universal",
"vue ssr",
"vue isomorphic",
"vue versatile"
2016-11-28 16:10:29 +00:00
],
"homepage": "https://github.com/nuxt/nuxt.js#readme",
2016-10-26 11:40:55 +00:00
"bin": {
"nuxt": "./bin/nuxt"
2016-10-26 11:40:55 +00:00
},
"scripts": {
"test": "npm run lint && nyc ava --verbose --serial test/",
2016-12-09 17:54:17 +00:00
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
2016-12-20 19:44:42 +00:00
"lint": "eslint --ext .js,.vue bin lib pages test/*.js --ignore-pattern lib/app",
2016-12-09 17:54:17 +00:00
"build": "webpack",
"watch": "webpack --watch",
"precommit": "npm run lint",
2017-05-09 13:21:36 +00:00
"prepublish": "npm run build",
"postinstall": "opencollective postinstall"
2016-10-26 11:40:55 +00:00
},
"engines": {
"node": ">=4.3.0 <5.0.0 || >=5.10",
"npm": ">=3.0.0"
},
2016-10-26 11:40:55 +00:00
"dependencies": {
2017-01-04 15:09:36 +00:00
"ansi-html": "^0.0.7",
2017-05-14 17:34:03 +00:00
"autoprefixer": "^7.0.1",
2017-04-17 16:15:21 +00:00
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
2017-04-17 16:15:21 +00:00
"babel-preset-es2015": "^6.24.1",
"babel-preset-vue-app": "^1.2.0",
"chokidar": "^1.6.1",
2016-11-07 01:34:58 +00:00
"co": "^4.6.0",
"compression": "^1.6.2",
"connect": "^3.6.1",
2017-05-02 09:16:51 +00:00
"css-loader": "^0.28.1",
"debug": "^2.6.6",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"friendly-errors-webpack-plugin": "^1.6.1",
2017-05-05 10:12:36 +00:00
"fs-extra": "^3.0.1",
2016-11-24 00:47:11 +00:00
"glob": "^7.1.1",
2016-11-07 01:34:58 +00:00
"hash-sum": "^1.0.2",
2017-04-17 16:15:21 +00:00
"html-minifier": "^3.4.3",
"html-webpack-plugin": "^2.28.0",
2017-01-04 15:09:36 +00:00
"lodash": "^4.17.4",
2016-12-01 18:02:34 +00:00
"lru-cache": "^4.0.2",
2016-12-09 18:40:59 +00:00
"memory-fs": "^0.4.1",
2017-04-17 16:15:21 +00:00
"offline-plugin": "^4.7.0",
2017-05-09 13:21:36 +00:00
"opencollective": "^1.0.3",
2016-11-07 01:34:58 +00:00
"pify": "^2.3.0",
2017-03-25 14:16:20 +00:00
"post-compile-webpack-plugin": "^0.1.1",
"preload-webpack-plugin": "^1.2.2",
2017-02-08 13:09:59 +00:00
"progress-bar-webpack-plugin": "^1.9.3",
"script-ext-html-webpack-plugin": "^1.7.1",
2016-11-07 01:34:58 +00:00
"serialize-javascript": "^1.3.0",
"serve-static": "^1.12.2",
2017-03-20 16:52:35 +00:00
"url-loader": "^0.5.8",
2017-05-05 10:12:36 +00:00
"vue": "~2.3.2",
"vue-loader": "^12.0.3",
"vue-meta": "^0.5.6",
2017-05-02 09:16:51 +00:00
"vue-router": "^2.5.3",
2017-05-05 10:12:36 +00:00
"vue-server-renderer": "~2.3.2",
2017-03-19 19:21:10 +00:00
"vue-ssr-html-stream": "^2.2.0",
2017-05-05 10:12:36 +00:00
"vue-template-compiler": "~2.3.2",
"vuex": "^2.3.1",
2017-05-05 10:12:36 +00:00
"webpack": "^2.5.0",
2017-04-17 16:15:21 +00:00
"webpack-bundle-analyzer": "^2.4.0",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0"
2016-10-26 11:40:55 +00:00
},
"devDependencies": {
2017-04-17 16:15:21 +00:00
"ava": "^0.19.1",
"babel-eslint": "^7.2.3",
2017-02-17 16:31:09 +00:00
"babel-plugin-array-includes": "^2.0.3",
2017-04-17 16:15:21 +00:00
"babel-plugin-transform-async-to-generator": "^6.24.1",
2017-03-20 16:52:35 +00:00
"babel-plugin-transform-runtime": "^6.23.0",
2017-04-17 16:15:21 +00:00
"babel-preset-stage-2": "^6.24.1",
2017-03-19 19:21:10 +00:00
"codecov": "^2.1.0",
2016-12-09 17:54:17 +00:00
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.19.0",
2017-04-17 16:15:21 +00:00
"eslint-config-standard": "^10.2.1",
2017-03-20 16:52:35 +00:00
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
2017-03-20 16:52:35 +00:00
"eslint-plugin-promise": "^3.5.0",
2017-04-14 09:56:50 +00:00
"eslint-plugin-standard": "^3.0.1",
"finalhandler": "^1.0.2",
2017-05-02 09:16:51 +00:00
"jsdom": "^10.1.0",
2016-12-09 17:54:17 +00:00
"json-loader": "^0.5.4",
"nyc": "^10.3.0",
2017-03-20 16:52:35 +00:00
"request": "^2.81.0",
2016-12-21 14:03:37 +00:00
"request-promise-native": "^1.0.3",
2016-12-09 17:54:17 +00:00
"webpack-node-externals": "^1.5.4"
2017-05-09 13:21:36 +00:00
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/nuxtjs",
"logo": "https://opencollective.com/nuxtjs/logo.txt?reverse=true&variant=variant2"
2016-10-26 11:40:55 +00:00
}
2017-05-09 13:21:36 +00:00
}