-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.8 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "vue-prerender",
"version": "0.1.2",
"description": "Prerender Vue.js pages as HTML.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"repository": "git@github.com:eldarc/vue-prerender.git",
"author": "Eldar Cejvanovic <eldar.cejvanovic@gmail.com>",
"license": "MIT",
"scripts": {
"build": "gulp",
"lint": "eslint",
"pretest": "yarn run lint",
"test": "jest",
"prepublish": "yarn run build"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.2.1",
"babel-register": "^6.23.0",
"coveralls": "^2.12.0",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-html": "^4.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^2.1.0",
"gettext-extractor": "^3.1.0",
"gettext-parser": "^1.3.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"jest": "^19.0.2",
"run-sequence": "^1.2.2",
"stream": "^0.0.2",
"webpack-stream": "^4.0.0"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
},
"dependencies": {
"colors": "^1.1.2",
"combo-wizard": "ministryofprogramming/combo-wizard",
"del": "^3.0.0",
"express": "^4.16.2",
"htmltidy2": "^0.2.1",
"loadash": "^1.0.0",
"mkdirp-promise": "^5.0.1",
"mz": "^2.7.0",
"ncp": "^2.0.0",
"path-to-regexp": "^2.1.0",
"portfinder": "^1.0.13",
"puppeteer": "^0.13.0"
}
}