forked from vinicius73/vue-page-title
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "vue-page-title",
"version": "1.1.3",
"description": "Vue.js html/page title manager",
"repository": "https://github.com/vinicius73/vue-page-title",
"author": "Vinicius Reis <[email protected]>",
"license": "MIT",
"keywords": [
"vue",
"head",
"title",
"document",
"meta"
],
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"unpkg": "dist/vue.iife.js",
"jsdelivr": "dist/vue.iife.js",
"files": [
"src",
"src",
"dist/*.js"
],
"scripts": {
"build": "rm -rf dist/ && rollup -c",
"test": "nyc --reporter=clover ava",
"test:coverage:html": "nyc --reporter=html --reporter=text ava --verbose",
"prepare": "npm run-script build"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/register": "^7.0.0-beta.51",
"@vue/test-utils": "^1.0.0-beta.19",
"ava": "^0.25.0",
"babel-preset-env": "^1.7.0",
"browser-env": "^3.2.5",
"eslint": "^5.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"nyc": "^12.0.2",
"require-extension-hooks": "^0.3.2",
"require-extension-hooks-vue": "^1.0.1",
"rollup": "^0.61.2",
"vue": "^2.5.16"
},
"engines": {
"node": ">= 8.10.0",
"npm": ">= 5.10.0"
},
"ava": {
"require": [
"@babel/register",
"./test/helpers/setup.js"
]
}
}