forked from troxler/vue-headful
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.34 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
{
"name": "vue-simple-headful",
"version": "2.2.8",
"description": "A simple ts-friendly meta-tag manager for Vue.js",
"author": "Raiondesu <[email protected]>",
"license": "MIT",
"repository": "github:VeryWow/vue-simple-headful",
"homepage": "https://VeryWow.github.io/vue-simple-headful/",
"bugs": "https://github.com/VeryWow/vue-simple-headful/issues",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"esnext": "dist/esm/index.js",
"types": "types",
"scripts": {
"dev": "cd example && webpack-dev-server --mode development --config config/webpack.dev.ts --open --hot",
"docs": "cd example && webpack --mode production --config config/webpack.prod.ts",
"build-cjs": "tsc -p config/tsconfig.cjs.json",
"build-esm": "tsc -p config/tsconfig.esm.json",
"build": "npm run build-cjs && npm run build-esm",
"server": "http-server-spa docs index.html 5000",
"start": "npm run docs && npm run server",
"postversion": "npm run build && npm run docs",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"test:types": "tsc -p ./types/test/tsconfig.json"
},
"dependencies": {
"headful": "^1.0.0"
},
"devDependencies": {
"@types/node": "^9.4.7",
"@types/webpack": "^4.1.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"element-ui": "^2.2.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.7",
"http-server-spa": "^1.2.0",
"markdown-loader": "^2.0.2",
"node-sass": "^4.7.2",
"pug": "^2.0.2",
"sass-loader": "^6.0.7",
"scss-loader": "0.0.1",
"ts-loader": "^4.1.0",
"ts-node": "^5.0.1",
"typescript": "^2.7.2",
"vue": "2.6",
"vue-loader": "^14.2.1",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.6.14",
"vue-typescript-import-dts": "^3.1.1",
"webpack": "^4.3.0",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2"
},
"peerDependencies": {
"vue": "2.x"
},
"keywords": [
"Vue.js",
"Vue",
"head",
"title",
"meta",
"metatag",
"metatags",
"tags",
"seo",
"sharing",
"TS",
"TypeScript",
"webpack@4"
]
}