vue-custom-properties
Version:
Make easier to use CSS custom properties in Vue components
63 lines (62 loc) • 2.26 kB
JSON
{
"name": "vue-custom-properties",
"version": "0.1.0",
"author": "katashin",
"description": "Make easier to use CSS custom properties in Vue components",
"keywords": [
"CSS",
"Custom Propeties",
"Component",
"Vue.js"
],
"license": "MIT",
"main": "dist/vue-custom-properties.cjs.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"homepage": "https://github.com/ktsn/vue-custom-properties",
"bugs": "https://github.com/ktsn/vue-custom-properties/issues",
"repository": {
"type": "git",
"url": "https://github.com/ktsn/vue-custom-properties.git"
},
"scripts": {
"prepublish": "npm run test && npm run clean && npm run build",
"clean": "rm -rf lib dist .tmp",
"dev": "npm run watch:test & testem && kill %1",
"build": "npm run build:ts && npm run build:cjs && npm run build:dev && npm run build:prod",
"build:ts": "tsc -p src",
"build:cjs": "rollup -c scripts/rollup.config.js --environment BUILD:commonjs",
"build:dev": "rollup -c scripts/rollup.config.js --environment BUILD:development",
"build:prod": "rollup -c scripts/rollup.config.js --environment BUILD:production | uglifyjs -mc warnings=false --comments -o dist/vue-custom-properties.min.js",
"watch:test": "webpack --watch --config scripts/webpack.config.test.js",
"example": "webpack-dev-server --open --hot --config example/webpack.config.js",
"lint": "tslint \"src/**/*.ts\" && tslint \"test/**/*.ts\"",
"test": "npm run lint && npm run test:unit",
"test:unit": "webpack --config scripts/webpack.config.test.js && testem ci --launch Firefox"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/power-assert": "1.4.29",
"css-loader": "^0.28.1",
"glob": "^7.1.0",
"power-assert": "^1.4.1",
"rollup": "^0.41.1",
"rollup-plugin-replace": "^1.1.1",
"testem": "^1.12.0",
"ts-loader": "^2.0.0",
"tslint": "^5.0.0",
"tslint-config-ktsn": "^2.0.0",
"typescript": "^2.3.2",
"uglify-js": "^3.0.1",
"vue": "^2.3.3",
"vue-loader": "^12.0.4",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.4.5",
"webpack-espower-loader": "^1.0.1"
}
}