-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "vue-linkify",
"version": "1.0.1",
"description": "A simple Vue directive to turn URL's and emails into clickable links",
"main": "dist/vue-linkify.min.js",
"scripts": {
"lint": "./node_modules/.bin/eslint index.js",
"build": "./node_modules/.bin/eslint index.js && BABEL_ENV=production && babel index.js -o ./dist/vue-linkify.min.js",
"test": "npm build && karma start test/unit/karma.conf.js --single-run"
},
"keywords": [
"vue",
"vuejs",
"component",
"directive",
"url",
"urlify",
"link",
"linkify"
],
"author": "Phan An <me@phanan.net> (http://phanan.net)",
"license": "MIT",
"dependencies": {
"linkifyjs": "^2.1.3",
"vue": "^2.1.6"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.2.9",
"babel-preset-babili": "^0.0.9",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.12.1",
"eslint-config-vue": "^2.0.1",
"eslint-plugin-vue": "^1.0.0",
"karma": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon-chai": "^1.2.4",
"karma-webpack": "^1.8.0",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"webpack": "^1.14.0"
}
}