mirror of
https://github.com/tenrok/vue-tribute.git
synced 2026-05-31 03:54:06 +03:00
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "vue-input-autosize",
|
|
"version": "0.2.0",
|
|
"description": "A simple Vue.js directive to autosize text input fields",
|
|
"license": "MIT",
|
|
"repository": "syropian/vue-input-autosize",
|
|
"author": {
|
|
"name": "Collin Henderson",
|
|
"email": "collin@syropia.net",
|
|
"url": "http://syropia.net"
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"scripts": {
|
|
"build:all": "npm run build && npm run build:umd",
|
|
"build": "BUILD_ENV=cjs rollup -c",
|
|
"build:umd": "BUILD_ENV=umd rollup -c",
|
|
"example": "vbuild --dev",
|
|
"example:build": "vbuild -t VueInputAutosize",
|
|
"test": "karma start karma.conf.js --single-run true --auto-watch false",
|
|
"watch-test": "karma start karma.conf.js --single-run false --auto-watch true"
|
|
},
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js",
|
|
"index.umd.js"
|
|
],
|
|
"keywords": [
|
|
"autosize",
|
|
"autogrow",
|
|
"autoshrink",
|
|
"input",
|
|
"Vue"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"babel-core": "^6.11.4",
|
|
"babel-plugin-transform-runtime": "^6.9.0",
|
|
"babel-preset-es2015": "^6.9.0",
|
|
"babel-preset-es2015-rollup": "^1.1.1",
|
|
"babel-runtime": "^6.9.2",
|
|
"babelify": "^7.3.0",
|
|
"browserify": "^13.0.1",
|
|
"jasmine-core": "^2.4.1",
|
|
"karma": "^1.1.1",
|
|
"karma-browserify": "^5.1.0",
|
|
"karma-jasmine": "^1.0.2",
|
|
"karma-phantomjs-launcher": "^1.0.1",
|
|
"karma-spec-reporter": "0.0.26",
|
|
"phantomjs-prebuilt": "^2.1.7",
|
|
"rollup": "^0.33.0",
|
|
"rollup-plugin-babel": "^2.6.1",
|
|
"vue": "^1.0.26",
|
|
"watchify": "^3.7.0"
|
|
}
|
|
}
|