vue-alertify
Version:
altertifyjs wrapper for vue
61 lines (60 loc) • 2.21 kB
JSON
{
"name": "vue-alertify",
"version": "1.1.0",
"description": "altertifyjs wrapper for vue",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib dist es",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
"build:watch": "echo 'build && watch the COMMONJS version of the package - for other version, run specific tasks' && npm run build:commonjs:watch",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:commonjs:watch": "npm run build:commonjs -- --watch",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:es:watch": "npm run build:es -- --watch",
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development node_modules/.bin/rollup src/index.js --config --sourcemap --output dist/vue-alertify.js",
"build:umd:watch": "npm run build:umd -- --watch",
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup src/index.js --config --output dist/vue-alertify.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sj82516/vue-alertify.git"
},
"keywords": [
"vue",
"vuejs",
"alert",
"alertifyjs"
],
"author": "yuanchieh,cheng",
"license": "MIT",
"bugs": {
"url": "https://github.com/sj82516/vue-alertify/issues"
},
"homepage": "https://github.com/sj82516/vue-alertify#readme",
"dependencies": {
"alertifyjs": "^1.11.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.1.1",
"vue": "^2.5.2"
},
"devDependencies": {
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1"
}
}