UNPKG

2.79 kBJSONView Raw
1{
2 "name": "nuxt",
3 "version": "0.9.6",
4 "description": "A minimalistic framework for server-rendered Vue.js applications (inspired by Next.js)",
5 "contributors": [
6 {
7 "name": "Sebastien Chopin"
8 },
9 {
10 "name": "Alexandre Chopin"
11 }
12 ],
13 "main": "./index.js",
14 "license": "MIT",
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/nuxt/nuxt.js"
18 },
19 "files": [
20 "bin",
21 "dist",
22 "index.js"
23 ],
24 "keywords": [
25 "nuxt",
26 "nuxt.js",
27 "nuxtjs",
28 "vue",
29 "vue.js",
30 "vuejs",
31 "next.js",
32 "vue ssr"
33 ],
34 "homepage": "https://github.com/nuxt/nuxt.js#readme",
35 "bin": {
36 "nuxt": "./bin/nuxt"
37 },
38 "scripts": {
39 "test": "nyc ava --serial test/",
40 "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
41 "lint": "eslint --ext .js,.vue bin lib pages test/*.js --ignore-pattern lib/app",
42 "build": "webpack",
43 "watch": "webpack --watch",
44 "precommit": "npm run lint",
45 "prepublish": "npm run build"
46 },
47 "dependencies": {
48 "ansi-html": "^0.0.7",
49 "autoprefixer": "^6.6.0",
50 "babel-core": "^6.21.0",
51 "babel-loader": "^6.2.10",
52 "babel-plugin-array-includes": "^2.0.3",
53 "babel-plugin-transform-async-to-generator": "^6.16.0",
54 "babel-plugin-transform-runtime": "^6.15.0",
55 "babel-preset-es2015": "^6.18.0",
56 "babel-preset-stage-2": "^6.18.0",
57 "chokidar": "^1.6.1",
58 "co": "^4.6.0",
59 "cross-spawn": "^5.0.1",
60 "css-loader": "^0.26.1",
61 "debug": "^2.6.0",
62 "extract-text-webpack-plugin": "2.0.0-beta.4",
63 "file-loader": "^0.9.0",
64 "fs-extra": "^1.0.0",
65 "glob": "^7.1.1",
66 "hash-sum": "^1.0.2",
67 "html-minifier": "^3.2.3",
68 "lodash": "^4.17.4",
69 "lru-cache": "^4.0.2",
70 "memory-fs": "^0.4.1",
71 "path-to-regexp": "^1.7.0",
72 "pify": "^2.3.0",
73 "serialize-javascript": "^1.3.0",
74 "serve-static": "^1.11.1",
75 "url-loader": "^0.5.7",
76 "vue": "^2.1.8",
77 "vue-loader": "^10.0.2",
78 "vue-meta": "^0.5.3",
79 "vue-router": "^2.1.1",
80 "vue-server-renderer": "^2.1.8",
81 "vue-template-compiler": "^2.1.8",
82 "vuex": "^2.1.1",
83 "webpack": "^2.2.0-rc.5",
84 "webpack-dev-middleware": "^1.9.0",
85 "webpack-hot-middleware": "^2.14.0"
86 },
87 "devDependencies": {
88 "ava": "^0.17.0",
89 "babel-eslint": "^7.1.1",
90 "codecov": "^1.0.1",
91 "copy-webpack-plugin": "^4.0.1",
92 "eslint": "^3.10.2",
93 "eslint-config-standard": "^6.2.1",
94 "eslint-plugin-html": "^1.7.0",
95 "eslint-plugin-promise": "^3.4.0",
96 "eslint-plugin-standard": "^2.0.1",
97 "finalhandler": "^0.5.1",
98 "jsdom": "^9.8.3",
99 "json-loader": "^0.5.4",
100 "nyc": "^10.0.0",
101 "request": "^2.79.0",
102 "request-promise-native": "^1.0.3",
103 "webpack-node-externals": "^1.5.4"
104 }
105}