Nuxt/package.json

105 lines
2.6 KiB
JSON
Raw Normal View History

2016-10-26 11:40:55 +00:00
{
"name": "nuxt",
2017-02-10 23:41:15 +00:00
"version": "0.9.9",
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": {
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",
2017-02-12 10:47:44 +00:00
"autoprefixer": "^6.7.2",
2017-01-20 11:41:21 +00:00
"babel-core": "^6.22.1",
2016-12-20 10:17:11 +00:00
"babel-loader": "^6.2.10",
2017-02-17 15:13:51 +00:00
"babel-preset-vue-app": "^0.4.0",
"chokidar": "^1.6.1",
2016-11-07 01:34:58 +00:00
"co": "^4.6.0",
2016-12-20 10:17:11 +00:00
"css-loader": "^0.26.1",
2017-02-12 10:47:44 +00:00
"debug": "^2.6.1",
2016-11-07 01:34:58 +00:00
"extract-text-webpack-plugin": "2.0.0-beta.4",
2017-02-12 10:47:44 +00:00
"file-loader": "^0.10.0",
2017-01-20 11:41:21 +00:00
"fs-extra": "^2.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",
2017-02-12 10:47:44 +00:00
"html-minifier": "^3.3.1",
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",
2017-02-08 13:09:59 +00:00
"progress-bar-webpack-plugin": "^1.9.3",
2016-11-07 01:34:58 +00:00
"serialize-javascript": "^1.3.0",
2017-02-12 10:47:44 +00:00
"serve-static": "^1.11.2",
2016-11-07 01:34:58 +00:00
"url-loader": "^0.5.7",
2017-01-20 11:41:21 +00:00
"vue": "^2.1.10",
2017-02-16 17:17:53 +00:00
"vue-loader": "^11.0.0",
2016-12-20 10:17:11 +00:00
"vue-meta": "^0.5.3",
2017-02-16 17:17:53 +00:00
"vue-router": "^2.2.1",
2017-01-20 11:41:21 +00:00
"vue-server-renderer": "^2.1.10",
"vue-template-compiler": "^2.1.10",
2017-02-12 10:47:44 +00:00
"vuex": "^2.1.2",
"webpack": "^2.2.1",
2017-02-16 17:17:53 +00:00
"webpack-bundle-analyzer": "^2.3.0",
2017-02-12 10:47:44 +00:00
"webpack-dev-middleware": "^1.10.0",
2017-02-16 17:17:53 +00:00
"webpack-hot-middleware": "^2.17.0"
2016-10-26 11:40:55 +00:00
},
"devDependencies": {
2017-02-12 10:47:44 +00:00
"ava": "^0.18.1",
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",
2017-02-12 10:47:44 +00:00
"eslint": "^3.15.0",
2016-11-07 01:34:58 +00:00
"eslint-config-standard": "^6.2.1",
2017-02-12 10:47:44 +00:00
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-promise": "^3.4.1",
2016-11-07 01:34:58 +00:00
"eslint-plugin-standard": "^2.0.1",
2017-02-16 17:17:53 +00:00
"finalhandler": "^1.0.0",
2017-02-12 10:47:44 +00:00
"jsdom": "^9.10.0",
2016-12-09 17:54:17 +00:00
"json-loader": "^0.5.4",
2017-01-20 11:41:21 +00:00
"nyc": "^10.1.2",
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
}
}