UNPKG

vue-remove-whitespace

Version:

A set of reusable remove whitespace directives for reusable Vue.js components

63 lines (62 loc) 1.55 kB
{ "name": "vue-remove-whitespace", "description": "A set of reusable remove whitespace directives for reusable Vue.js components", "version": "2.1.1", "author": "Ken Aoki <aokiken@me.com>", "bugs": { "url": "https://github.com/aokiken/vue-remove-whitespace/issues" }, "devDependencies": { "@vue/test-utils": "^1.2.1", "babel-jest": "^27.0.5", "babel-preset-env": "^1.7.0", "eslint": "^7.29.0", "jest": "^27.0.5", "ts-loader": "^9.2.3", "typescript": "^4.3.4", "vue": "^2.6.14", "vue-template-compiler": "^2.6.14", "webpack": "^5.40.0", "webpack-cli": "^4.7.2" }, "files": [ "umd", "esm", "lib" ], "homepage": "https://github.com/aokiken/vue-remove-whitespace", "keywords": [ "remove-whitespace", "reusable", "vue", "vue-directive", "vuejs" ], "license": "MIT", "main": "lib/index.js", "module": "esm/index.js", "types": "lib/index.d.ts", "peerDependencies": { "vue": "^2.0.0" }, "repository": { "type": "git", "url": "https://github.com/aokiken/vue-remove-whitespace" }, "scripts": { "build": "yarn run build:cjs && yarn run build:esm && yarn run build:umd", "build:cjs": "tsc -p tsconfig.cjs.json", "build:esm": "tsc -p tsconfig.esm.json", "build:umd": "webpack", "test": "jest" }, "jest": { "testEnvironment": "jsdom", "collectCoverage": true, "collectCoverageFrom": [ "!**/node_modules/**", "./lib/index.js" ], "testMatch": ["<rootDir>/**/*.test.js"] } }