forked from znck/lazy-hydration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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
{
"name": "lazy-hydration",
"version": "0.2.1",
"description": "Lazy Hydration for Vue SSR",
"repository": {
"type": "git",
"url": "git+https://github.com/znck/lazy-hydration.git"
},
"keywords": [
"vue",
"lazy hydration",
"hydration",
"ssr"
],
"author": {
"name": "Rahul Kadyan",
"email": "hi@znck.me",
"url": "https://znck.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/znck/lazy-hydration/issues"
},
"homepage": "https://github.com/znck/lazy-hydration#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@vue/server-test-utils": "^1.0.0-beta.28",
"@vue/test-utils": "^1.0.0-beta.28",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"jest": "^23.6.0",
"regenerator-runtime": "^0.13.1",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.1",
"rollup-plugin-vue": "^4.6.1",
"vue": "^2.5.22",
"vue-jest": "^3.0.2",
"vue-server-renderer": "^2.5.22",
"vue-template-compiler": "^2.5.22"
},
"scripts": {
"test": "jest",
"pre:build": "rm -rf dist/",
":build": "rollup -c --environment BUILD:production",
"prepublishOnly": "npm run :build",
"pre:release": "npm run test",
":release": "standard-version",
"post:release": "git push --follow-tags origin master && npm publish",
"release": "npm run :release"
},
"files": [
"Hydrate.vue",
"dist/"
],
"browserslist": "> 0.25%, not dead",
"main": "dist/lazy-hydration.ssr.js",
"module": "dist/lazy-hydration.js",
"browser": "Hydrate.vue",
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "babel-jest"
}
},
"dependencies": {
"@znck/prop-types": "^0.5.1"
}
}