2016-10-26 11:40:55 +00:00
|
|
|
{
|
|
|
|
"name": "nuxt",
|
2017-06-06 12:57:48 +00:00
|
|
|
"version": "1.0.0-alpha.4",
|
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": [
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
],
|
2017-01-11 21:18:23 +00:00
|
|
|
"main": "./index.js",
|
2017-05-31 08:22:04 +00:00
|
|
|
"types": "./index.d.ts",
|
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",
|
2017-05-30 11:28:44 +00:00
|
|
|
"index.d.ts",
|
2017-01-11 21:18:23 +00:00
|
|
|
"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": {
|
2016-11-07 12:53:05 +00:00
|
|
|
"nuxt": "./bin/nuxt"
|
2016-10-26 11:40:55 +00:00
|
|
|
},
|
2017-06-18 09:42:03 +00:00
|
|
|
"nyc": {
|
2017-06-18 18:22:02 +00:00
|
|
|
"include": [
|
2017-06-19 15:21:01 +00:00
|
|
|
"lib"
|
2017-06-18 09:42:03 +00:00
|
|
|
]
|
|
|
|
},
|
2016-10-26 11:40:55 +00:00
|
|
|
"scripts": {
|
2017-06-19 15:21:01 +00:00
|
|
|
"test": "npm run lint && cross-env NODE_ENV=test npm run build && nyc ava --verbose --serial test/ -- && nyc report --reporter=html",
|
2016-12-09 17:54:17 +00:00
|
|
|
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
2017-06-18 07:36:00 +00:00
|
|
|
"lint": "eslint --ext .js,.vue bin lib pages test/*.js --ignore-pattern app",
|
2017-06-19 18:18:26 +00:00
|
|
|
"build": "rimraf dist/ && npm run build:core && npm run build:builder",
|
2017-06-18 07:36:00 +00:00
|
|
|
"build:core": "rollup -c rollup.config.js --environment TARGET:core",
|
2017-06-16 12:42:45 +00:00
|
|
|
"watch": "npm run build:core -- -w",
|
2017-06-18 07:36:00 +00:00
|
|
|
"build:builder": "rollup -c rollup.config.js --environment TARGET:builder",
|
2017-06-16 12:42:45 +00:00
|
|
|
"watch:builder": "npm run build:builder -- -w",
|
2016-12-09 17:54:17 +00:00
|
|
|
"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
|
|
|
},
|
2017-02-18 12:27:10 +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-30 14:07:05 +00:00
|
|
|
"autoprefixer": "^7.1.1",
|
2017-06-18 18:22:02 +00:00
|
|
|
"babel-core": "^6.25.0",
|
2017-04-29 20:53:07 +00:00
|
|
|
"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",
|
2017-06-16 12:42:45 +00:00
|
|
|
"chalk": "^1.1.3",
|
2017-05-16 15:31:02 +00:00
|
|
|
"chokidar": "^1.7.0",
|
2017-02-21 17:10:19 +00:00
|
|
|
"compression": "^1.6.2",
|
2017-05-17 09:26:51 +00:00
|
|
|
"connect": "^3.6.2",
|
2017-05-30 14:07:05 +00:00
|
|
|
"css-loader": "^0.28.4",
|
|
|
|
"debug": "^2.6.8",
|
2017-05-21 12:18:21 +00:00
|
|
|
"etag": "^1.8.0",
|
2017-06-18 18:22:02 +00:00
|
|
|
"extract-text-webpack-plugin": "^2.1.2",
|
2017-06-06 12:57:23 +00:00
|
|
|
"file-loader": "^0.11.2",
|
2017-05-21 12:18:21 +00:00
|
|
|
"fresh": "^0.5.0",
|
2017-03-24 00:28:04 +00:00
|
|
|
"friendly-errors-webpack-plugin": "^1.6.1",
|
2017-05-05 10:12:36 +00:00
|
|
|
"fs-extra": "^3.0.1",
|
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",
|
2017-05-30 14:07:05 +00:00
|
|
|
"html-minifier": "^3.5.2",
|
2017-02-21 17:10:19 +00:00
|
|
|
"html-webpack-plugin": "^2.28.0",
|
2017-01-04 15:09:36 +00:00
|
|
|
"lodash": "^4.17.4",
|
2016-12-09 18:40:59 +00:00
|
|
|
"memory-fs": "^0.4.1",
|
2017-06-11 13:48:20 +00:00
|
|
|
"minimist": "^1.2.0",
|
2017-05-30 14:07:05 +00:00
|
|
|
"offline-plugin": "^4.8.1",
|
2017-05-09 13:21:36 +00:00
|
|
|
"opencollective": "^1.0.3",
|
2017-05-30 14:07:05 +00:00
|
|
|
"pify": "^3.0.0",
|
2017-04-10 16:44:08 +00:00
|
|
|
"preload-webpack-plugin": "^1.2.2",
|
2017-02-08 13:09:59 +00:00
|
|
|
"progress-bar-webpack-plugin": "^1.9.3",
|
2017-05-30 14:07:05 +00:00
|
|
|
"script-ext-html-webpack-plugin": "^1.8.1",
|
2016-11-07 01:34:58 +00:00
|
|
|
"serialize-javascript": "^1.3.0",
|
2017-05-30 14:07:05 +00:00
|
|
|
"serve-static": "^1.12.3",
|
2017-06-16 12:42:45 +00:00
|
|
|
"source-map-support": "^0.4.15",
|
2017-06-11 13:33:47 +00:00
|
|
|
"tapable": "^0.2.6",
|
2017-06-13 17:58:04 +00:00
|
|
|
"tappable": "^1.0.1",
|
2017-06-15 16:26:13 +00:00
|
|
|
"url-loader": "^0.5.9",
|
2017-06-18 18:22:02 +00:00
|
|
|
"vue": "~2.3.4",
|
2017-05-30 14:07:05 +00:00
|
|
|
"vue-loader": "^12.2.1",
|
2017-05-16 15:54:24 +00:00
|
|
|
"vue-meta": "^1.0.4",
|
2017-06-18 18:22:02 +00:00
|
|
|
"vue-router": "^2.6.0",
|
|
|
|
"vue-server-renderer": "~2.3.4",
|
2017-03-19 19:21:10 +00:00
|
|
|
"vue-ssr-html-stream": "^2.2.0",
|
2017-06-18 18:22:02 +00:00
|
|
|
"vue-template-compiler": "~2.3.4",
|
2017-04-29 20:53:07 +00:00
|
|
|
"vuex": "^2.3.1",
|
2017-06-19 18:18:26 +00:00
|
|
|
"webpack": "^3.0.0",
|
2017-05-30 14:07:05 +00:00
|
|
|
"webpack-bundle-analyzer": "^2.8.2",
|
2017-04-29 20:53:07 +00:00
|
|
|
"webpack-dev-middleware": "^1.10.2",
|
2017-05-24 13:04:17 +00:00
|
|
|
"webpack-hot-middleware": "^2.18.0",
|
|
|
|
"webpack-node-externals": "^1.6.0"
|
2016-10-26 11:40:55 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-04-17 16:15:21 +00:00
|
|
|
"ava": "^0.19.1",
|
2017-04-29 20:53:07 +00:00
|
|
|
"babel-eslint": "^7.2.3",
|
2017-02-17 16:31:09 +00:00
|
|
|
"babel-plugin-array-includes": "^2.0.3",
|
2017-06-19 15:21:01 +00:00
|
|
|
"babel-plugin-istanbul": "^4.1.4",
|
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-06-16 12:42:45 +00:00
|
|
|
"babel-preset-es2015-rollup": "^3.0.0",
|
2017-04-17 16:15:21 +00:00
|
|
|
"babel-preset-stage-2": "^6.24.1",
|
2017-05-16 15:31:02 +00:00
|
|
|
"codecov": "^2.2.0",
|
2016-12-09 17:54:17 +00:00
|
|
|
"copy-webpack-plugin": "^4.0.1",
|
2017-06-19 15:21:01 +00:00
|
|
|
"cross-env": "^5.0.1",
|
2017-06-15 16:26:13 +00:00
|
|
|
"eslint": "^4.0.0",
|
2017-04-17 16:15:21 +00:00
|
|
|
"eslint-config-standard": "^10.2.1",
|
2017-06-15 16:26:13 +00:00
|
|
|
"eslint-plugin-html": "^3.0.0",
|
2017-05-30 14:07:05 +00:00
|
|
|
"eslint-plugin-import": "^2.3.0",
|
2017-06-06 12:57:23 +00:00
|
|
|
"eslint-plugin-node": "^5.0.0",
|
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",
|
2017-05-30 14:07:05 +00:00
|
|
|
"finalhandler": "^1.0.3",
|
|
|
|
"jsdom": "^11.0.0",
|
2016-12-09 17:54:17 +00:00
|
|
|
"json-loader": "^0.5.4",
|
2017-06-16 12:42:45 +00:00
|
|
|
"lerna": "2.0.0-rc.5",
|
2017-06-06 12:57:23 +00:00
|
|
|
"nyc": "^11.0.2",
|
2017-03-20 16:52:35 +00:00
|
|
|
"request": "^2.81.0",
|
2017-05-16 15:31:02 +00:00
|
|
|
"request-promise-native": "^1.0.4",
|
2017-06-19 18:18:26 +00:00
|
|
|
"rimraf": "^2.6.1",
|
2017-06-16 12:42:45 +00:00
|
|
|
"rollup": "^0.43.0",
|
|
|
|
"rollup-plugin-alias": "^1.3.1",
|
|
|
|
"rollup-plugin-babel": "^2.7.1",
|
|
|
|
"rollup-plugin-commonjs": "^8.0.2",
|
|
|
|
"rollup-plugin-node-resolve": "^3.0.0",
|
|
|
|
"rollup-plugin-replace": "^1.1.1",
|
|
|
|
"rollup-watch": "^4.0.0",
|
|
|
|
"std-mocks": "^1.0.1",
|
2017-06-18 18:22:02 +00:00
|
|
|
"uglify-js": "^3.0.18"
|
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-16 13:13:44 +00:00
|
|
|
}
|