Nuxt/package.json

156 lines
4.2 KiB
JSON
Raw Normal View History

2016-10-26 11:40:55 +00:00
{
"name": "nuxt",
2018-03-13 10:39:38 +00:00
"version": "2.0.0",
2018-02-28 07:28:17 +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": [
{
2017-05-30 14:07:05 +00:00
"name": "Sebastien Chopin (@Atinux)"
2016-11-28 16:10:29 +00:00
},
{
2017-05-30 14:07:05 +00:00
"name": "Alexandre Chopin (@alexchopin)"
},
{
"name": "Pooya Parsa (@pi0)"
2016-11-28 16:10:29 +00:00
}
],
"main": "./lib/index.js",
2018-03-16 16:12:06 +00:00
"module": "./lib/index.mjs",
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"
},
2018-02-28 07:28:17 +00:00
"files": [
"bin",
"lib"
],
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": {
2018-03-19 07:57:28 +00:00
"test": "npm run build-fixtures && npm run test:unit",
2018-03-19 00:59:54 +00:00
"build-fixtures": "node ./scripts/build-fixtures",
"test:unit": "jest --maxWorkers=4 --coverage test/unit",
2018-03-19 10:06:45 +00:00
"test:e2e": "jest --maxWorkers=1 test/e2e",
2018-03-19 05:53:48 +00:00
"coverage": "codecov",
2018-03-16 19:52:03 +00:00
"lint": "eslint --ext .js,.mjs,.vue bin/* build/ lib/ test/ examples/",
2016-12-09 17:54:17 +00:00
"precommit": "npm run lint",
2017-12-12 09:52:20 +00:00
"postinstall": "opencollective postinstall || exit 0"
2016-10-26 11:40:55 +00:00
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
2016-10-26 11:40:55 +00:00
"dependencies": {
"@nuxtjs/friendly-errors-webpack-plugin": "^2.0.2",
2018-01-07 08:21:36 +00:00
"@nuxtjs/youch": "^4.2.3",
2017-01-04 15:09:36 +00:00
"ansi-html": "^0.0.7",
2018-03-23 05:42:18 +00:00
"autoprefixer": "^8.2.0",
2017-08-17 18:07:52 +00:00
"babel-core": "^6.26.0",
2018-03-08 10:41:19 +00:00
"babel-loader": "^7.1.4",
2017-12-08 09:11:27 +00:00
"babel-preset-vue-app": "^2.0.0",
"cache-loader": "^1.2.2",
2018-03-08 10:41:19 +00:00
"chalk": "^2.3.2",
2018-03-23 05:42:18 +00:00
"chokidar": "^2.0.3",
2017-10-06 18:51:43 +00:00
"compression": "^1.7.1",
"connect": "^3.6.5",
2018-03-01 11:31:17 +00:00
"css-hot-loader": "^1.3.8",
2018-03-20 21:36:07 +00:00
"css-loader": "^0.28.11",
2017-10-06 18:51:43 +00:00
"debug": "^3.1.0",
2018-01-26 11:40:35 +00:00
"es6-promise": "^4.2.4",
2018-03-23 05:42:18 +00:00
"esm": "^3.0.8",
2017-10-06 18:51:43 +00:00
"etag": "^1.8.1",
2018-03-08 10:41:19 +00:00
"file-loader": "^1.1.11",
2017-10-06 18:51:43 +00:00
"fresh": "^0.5.2",
2017-12-12 07:43:09 +00:00
"fs-extra": "^5.0.0",
2017-05-30 14:07:05 +00:00
"glob": "^7.1.2",
2016-11-07 01:34:58 +00:00
"hash-sum": "^1.0.2",
2018-03-20 21:36:07 +00:00
"html-minifier": "^3.5.12",
2018-03-23 05:42:18 +00:00
"html-webpack-plugin": "^3.1.0",
"is-ci": "^1.1.0",
2018-02-07 09:43:58 +00:00
"launch-editor-middleware": "^2.2.1",
"lodash": "^4.17.5",
2018-03-22 19:29:05 +00:00
"log-update": "^2.3.0",
2018-03-11 20:11:42 +00:00
"lru-cache": "^4.1.2",
2016-12-09 18:40:59 +00:00
"memory-fs": "^0.4.1",
"mini-css-extract-plugin": "^0.2.0",
2017-06-11 13:48:20 +00:00
"minimist": "^1.2.0",
2017-05-09 13:21:36 +00:00
"opencollective": "^1.0.3",
2018-03-12 15:16:08 +00:00
"ora": "^2.0.0",
2018-03-23 05:42:18 +00:00
"postcss": "^6.0.21",
2018-01-26 11:40:35 +00:00
"postcss-cssnext": "^3.1.0",
2018-02-13 07:31:15 +00:00
"postcss-import": "^11.1.0",
"postcss-import-resolver": "^1.1.0",
2018-03-20 21:36:07 +00:00
"postcss-loader": "^2.1.3",
2017-11-26 14:01:20 +00:00
"postcss-url": "^7.3.0",
2018-01-30 01:57:24 +00:00
"semver": "^5.5.0",
2017-08-03 08:46:53 +00:00
"serialize-javascript": "^1.4.0",
2018-02-13 07:31:15 +00:00
"serve-static": "^1.13.2",
2017-07-27 08:21:17 +00:00
"server-destroy": "^1.0.1",
2018-03-01 11:31:17 +00:00
"source-map": "^0.7.2",
"style-resources-loader": "^1.1.0",
"thread-loader": "^1.1.5",
2018-02-28 07:28:17 +00:00
"time-fix-plugin": "^2.0.0",
"uglifyjs-webpack-plugin": "^1.2.4",
2018-01-02 02:36:09 +00:00
"upath": "^1.0.2",
2018-03-08 10:41:19 +00:00
"url-loader": "^1.0.1",
2018-03-15 06:59:42 +00:00
"vue": "^2.5.16",
"vue-loader": "^15.0.0-beta.7",
2018-03-20 21:36:07 +00:00
"vue-meta": "^1.5.0",
2017-10-17 10:31:49 +00:00
"vue-router": "^3.0.1",
2018-03-15 06:59:42 +00:00
"vue-server-renderer": "^2.5.16",
"vue-template-compiler": "^2.5.16",
2017-11-02 13:23:46 +00:00
"vuex": "^3.0.1",
"webpack": "^4.2.0",
2018-03-08 10:41:19 +00:00
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-middleware": "^3.0.1",
"webpack-hot-middleware": "^2.21.2",
2018-03-24 13:02:04 +00:00
"webpack-node-externals": "^1.6.0",
"webpackbar": "^1.1.3"
2016-10-26 11:40:55 +00:00
},
"devDependencies": {
2018-01-15 11:22:29 +00:00
"babel-eslint": "^8.2.1",
2017-10-28 09:02:11 +00:00
"codecov": "^3.0.0",
2018-03-23 05:42:18 +00:00
"eslint": "^4.19.1",
2018-03-13 10:33:36 +00:00
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-jsx": "^5.0.0",
2018-01-26 11:40:35 +00:00
"eslint-plugin-html": "^4.0.2",
2017-10-28 09:02:11 +00:00
"eslint-plugin-import": "^2.8.0",
2018-03-18 07:56:41 +00:00
"eslint-plugin-jest": "^21.15.0",
2018-02-07 09:43:58 +00:00
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.7.0",
2018-01-31 15:39:23 +00:00
"eslint-plugin-react": "^7.6.1",
2017-04-14 09:56:50 +00:00
"eslint-plugin-standard": "^3.0.1",
2018-03-23 05:42:18 +00:00
"eslint-plugin-vue": "^4.4.0",
"execa": "^0.10.0",
2017-10-17 10:31:49 +00:00
"express": "^4.16.2",
2018-03-08 10:41:19 +00:00
"finalhandler": "^1.1.1",
2018-03-18 23:41:14 +00:00
"get-port": "^3.2.0",
2018-03-23 05:42:18 +00:00
"jest": "^22.4.3",
2018-03-18 23:41:14 +00:00
"jest-runner-eslint": "^0.4.0",
2018-01-31 15:39:23 +00:00
"jsdom": "^11.6.2",
2018-03-19 05:17:48 +00:00
"listr": "^0.13.0",
2018-03-19 16:09:22 +00:00
"puppeteer": "^1.2.0",
2017-10-06 18:51:43 +00:00
"request": "^2.83.0",
2018-03-20 21:36:07 +00:00
"request-promise-native": "^1.0.5"
2017-05-09 13:21:36 +00:00
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/nuxtjs",
2018-02-28 07:28:17 +00:00
"logo": "https://opencollective.com/nuxtjs/logo.txt?reverse=true&variant=variant2"
2016-10-26 11:40:55 +00:00
}
2017-05-16 13:13:44 +00:00
}