forked from phanan/vue-linkify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "vue-linkify-hashtags-mentions",
"version": "1.0.0",
"description": "A simple Vue directive to turn URL's and emails into clickable links",
"main": "dist/vue-linkify.min.js",
"scripts": {
"test": "npm build && node_modules/karma/bin/karma start test/karma.conf.js",
"lint": "./node_modules/.bin/eslint index.js",
"build": "./node_modules/.bin/eslint index.js && BABEL_ENV=production && babel index.js -o ./dist/vue-linkify-hashtags-mentions.min.js"
},
"keywords": [
"vue",
"vuejs",
"component",
"directive",
"url",
"urlify",
"link",
"linkify",
"mentions",
"mention",
"hashtag",
"hashtags"
],
"author": "HRAnkit/hrank8t",
"license": "MIT",
"dependencies": {
"linkifyjs": "^2.1.3",
"vue": "^2.1.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-babili": "0.0.9",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^3.12.1",
"eslint-config-vue": "^2.0.1",
"eslint-plugin-vue": "^1.0.0",
"jasmine-core": "^2.8.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-mocha": "^2.0.1",
"karma-webpack": "^2.0.9",
"mocha": "^7.1.2",
"webpack": "^3.10.0"
}
}