forked from express-vue/vue-pronto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.09 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "vue-pronto",
"version": "1.7.0",
"description": "Seriously fast vue server renderer",
"main": "lib/index.js",
"files": [
"lib/**/*.js",
".babelrc"
],
"dependencies": {
"@types/deepmerge": "^2.1.0",
"@types/object-hash": "^1.2.0",
"browserify": "^16.2.2",
"clean-css": "^4.2.1",
"deepmerge": "^2.1.1",
"find": "^0.2.9",
"find-node-modules": "^1.0.4",
"js-to-string": "^0.4.5",
"lru-cache": "^4.1.3",
"object-hash": "^1.3.0",
"require-from-string": "^2.0.2",
"uglify-js": "^3.4.8",
"vue": "^2.5.17",
"vue-server-renderer": "^2.5.17",
"vue-template-compiler": "^2.5.17",
"vueify": "^9.4.1",
"xss": "^0.3.8"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/clean-css": "^3.4.30",
"@types/lru-cache": "^4.1.1",
"@types/node": "^10.9.2",
"@types/require-from-string": "^1.2.0",
"@types/uglify-js": "^3.0.3",
"@types/vue": "^2.0.0",
"ava": "^0.25.0",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"codecov": "^3.0.4",
"express": "^4.16.3",
"flame": "^0.1.20",
"generate-release": "^1.1.1",
"nodemon": "^1.18.3",
"nsp": "^3.2.1",
"nyc": "^11.9.0",
"simple-vue-component-test": "^1.0.0",
"sleep-ms": "^2.0.1",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"scripts": {
"release": "npm test && generate-release",
"debug": "nodemon --inspect tests/example/index.js",
"start": "node tests/example/index.js",
"debug-windows": "npm run build-windows && node --inspect tests/example/index.js",
"start-windows": "npm run build-windows && node tests/example/index.js",
"lint": "tslint --project tsconfig.json",
"pretest": "npm run lint",
"test": "TEST=true nyc ava",
"coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"preversion": "npm test"
},
"ava": {
"files": [
"tests/**/*.js",
"!tests/example/**/*.js"
],
"source": [
"lib/**/*.js"
],
"concurrency": 5,
"failFast": false,
"powerAssert": false,
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/assets/**/*"
],
"reporter": [
"text-summary"
]
},
"author": "Daniel Cherubini",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/express-vue/vue-pronto.git"
},
"keywords": [
"vue",
"express",
"node",
"ssr",
"javascript",
"stream",
"io"
],
"bugs": {
"url": "https://github.com/express-vue/vue-pronto/issues"
},
"homepage": "https://github.com/express-vue/vue-pronto#readme"
}