-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
57 lines (57 loc) · 1.48 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": "@clampy-js/vue-clampy",
"description": "Vue.js (2+) directive that clamps the content of an element by adding an ellipsis to it if the content inside is too long.",
"version": "0.0.0-development",
"author": "Alexandre Moore <[email protected]>",
"bugs": {
"url": "https://github.com/clampy-js/vue-clampy/issues"
},
"dependencies": {
"vue": "^2.0.0",
"@clampy-js/clampy": "^1.0.9"
},
"devDependencies": {
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015-rollup": "^3.0.0",
"lint-staged": "^3.3.1",
"pre-commit": "^1.2.2",
"prettier": "^0.19.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^2.0.0",
"semantic-release": "^15.5.0",
"travis-deploy-once": "^5.0.0"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"files": [
"vue-clampy.js"
],
"homepage": "https://github.com/clampy-js/vue-clampy",
"keywords": [
"clamp",
"ellipsis",
"clampy-js",
"clampy",
"vue",
"vue-directive",
"vuejs"
],
"license": "MIT",
"main": "vue-clampy.js",
"repository": {
"type": "git",
"url": "https://github.com/clampy-js/vue-clampy"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"publishConfig": {
"access": "public"
}
}