-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
72 lines (72 loc) · 1.59 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
{
"name": "vue-highlighter",
"version": "2.6.0",
"description": "Vue directive for highlight multiple istances of a word",
"keywords": [
"vue",
"highlight",
"word",
"library",
"directive",
"vue-highlight",
"evidence",
"mark"
],
"repository": {
"url": "remeic/vue-highlighter",
"type": "git"
},
"publishConfig": { "registry": "https://npm.pkg.github.com/" },
"main": "dist/vue-highlighter.cjs.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm test && npm run build",
"lint": "eslint . --ext .js --ext .vue",
"test": "npm run lint && tyu",
"test:cov": "nyc --reporter=lcov --reporter=text npm run test",
"build": "bili",
"example": "poi",
"build:example": "poi build",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"author": {
"name": "Giulio Fagioli",
"email": "fagioli.giulio@gmail.com"
},
"license": "MIT",
"poi": {
"entry": "example/index.js",
"dist": "example/dist",
"homepage": "./"
},
"bili": {
"format": [
"cjs",
"umd"
],
"name": "vue-highlighter"
},
"eslintConfig": {
"extends": [
"plugin:vue/recommended"
]
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.13",
"bili": "^1.3.3",
"codecov": "^3.0.0",
"eslint": "^4.14.0",
"eslint-plugin-vue": "^4.0.1",
"poi": "^9.3.10",
"sinon": "^4.5.0",
"tyu": "^1.0.0",
"vue-test-utils": "^1.0.0-beta.9"
},
"resolutions": { "upath": "1.1.0" },
"dependencies": {
"babel-plugin-istanbul": "^4.1.5",
"nyc": "^14.1.1"
}
}