Nuxt/package.json

107 lines
2.8 KiB
JSON
Raw Normal View History

2016-10-26 11:40:55 +00:00
{
"name": "nuxt",
2016-12-27 16:07:50 +00:00
"version": "0.9.5",
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"
}
],
2016-12-09 17:54:17 +00:00
"main": "./dist/nuxt.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",
"dist"
],
2016-11-28 16:10:29 +00:00
"keywords": [
"nuxt",
"nuxt.js",
"nuxtjs",
"vue",
"vue.js",
"vuejs",
"next.js",
"vue ssr"
],
"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": {
2016-12-21 19:51:25 +00:00
"test": "nyc ava --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",
"prepublish": "npm run build"
2016-10-26 11:40:55 +00:00
},
"dependencies": {
2017-01-04 15:09:36 +00:00
"ansi-html": "^0.0.7",
2016-12-24 17:01:52 +00:00
"autoprefixer": "^6.6.0",
2016-12-20 10:17:11 +00:00
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
2016-12-27 13:55:33 +00:00
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
2016-11-07 01:34:58 +00:00
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"chokidar": "^1.6.1",
2016-11-07 01:34:58 +00:00
"co": "^4.6.0",
"cross-spawn": "^5.0.1",
2016-12-20 10:17:11 +00:00
"css-loader": "^0.26.1",
2017-01-04 15:09:36 +00:00
"debug": "^2.6.0",
2016-11-07 01:34:58 +00:00
"es6-object-assign": "^1.0.3",
"es6-promise": "^4.0.5",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "^0.9.0",
2016-11-10 12:24:20 +00:00
"fs-extra": "^1.0.0",
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",
2016-12-12 22:09:08 +00:00
"html-minifier": "^3.2.3",
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",
2016-11-10 20:52:27 +00:00
"path-to-regexp": "^1.7.0",
2016-11-07 01:34:58 +00:00
"pify": "^2.3.0",
"serialize-javascript": "^1.3.0",
"serve-static": "^1.11.1",
"url-loader": "^0.5.7",
2017-01-04 15:09:36 +00:00
"vue": "^2.1.8",
2016-12-01 18:02:34 +00:00
"vue-loader": "^10.0.2",
2016-12-20 10:17:11 +00:00
"vue-meta": "^0.5.3",
2016-12-04 18:16:39 +00:00
"vue-router": "^2.1.1",
2017-01-04 15:09:36 +00:00
"vue-server-renderer": "^2.1.8",
"vue-template-compiler": "^2.1.8",
2016-12-20 10:17:11 +00:00
"vuex": "^2.1.1",
2017-01-11 20:12:44 +00:00
"webpack": "2.2.0-rc.3",
2016-12-20 10:17:11 +00:00
"webpack-dev-middleware": "^1.9.0",
2016-12-24 17:01:52 +00:00
"webpack-hot-middleware": "^2.14.0"
2016-10-26 11:40:55 +00:00
},
"devDependencies": {
2016-12-09 17:54:17 +00:00
"ava": "^0.17.0",
2016-11-23 13:11:35 +00:00
"babel-eslint": "^7.1.1",
2016-12-09 17:54:17 +00:00
"codecov": "^1.0.1",
"copy-webpack-plugin": "^4.0.1",
2016-11-23 13:11:35 +00:00
"eslint": "^3.10.2",
2016-11-07 01:34:58 +00:00
"eslint-config-standard": "^6.2.1",
2016-11-23 13:11:35 +00:00
"eslint-plugin-html": "^1.7.0",
"eslint-plugin-promise": "^3.4.0",
2016-11-07 01:34:58 +00:00
"eslint-plugin-standard": "^2.0.1",
2016-12-21 19:51:25 +00:00
"finalhandler": "^0.5.1",
2016-12-09 17:54:17 +00:00
"jsdom": "^9.8.3",
"json-loader": "^0.5.4",
"nyc": "^10.0.0",
2016-12-21 14:03:37 +00:00
"request": "^2.79.0",
"request-promise-native": "^1.0.3",
2016-12-09 17:54:17 +00:00
"webpack-node-externals": "^1.5.4"
2016-10-26 11:40:55 +00:00
}
}