-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "vue-highlights",
"version": "0.1.0",
"private": false,
"description": "Easy @mention, #hashtag and URL highlight for Vue 2.x",
"author": "Pedro G. Galaviz <hello@pggalaviz.com>",
"scripts": {
"build": "vue-cli-service build --target lib --dest dist --name vue-highlights src/index.js",
"serve": "vue-cli-service serve",
"test": "npm run test:unit",
"build-docs": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"prepublish": "npm run test && npm run build"
},
"main": "dist/vue-highlights.common.js",
"unpkg": "dist/vue-highlights.umd.min.js",
"dependencies": {
"punycode": "^2.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-router": "^4.1.0",
"@vue/cli-plugin-unit-jest": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"core-js": "^3.4.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"highlight.js": "^10.4.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.10"
},
"bugs": {
"url": "https://github.com/pggalaviz/vue-highlights/issues"
},
"homepage": "https://github.com/pggalaviz/vue-highlights#readme",
"keywords": [
"vue",
"highlight",
"highlights",
"mention",
"mentions",
"hashtag",
"hashtags"
],
"licence": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pggalaviz/vue-highlights.git"
}
}