|
| 1 | +{ |
| 2 | + "name": "vue-if-bot", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "Hide stuff from bots (especially cookie consents)", |
| 5 | + "author": "Alexander Lichter <[email protected]>", |
| 6 | + "license": "MIT", |
| 7 | + "main": "lib/index.js", |
| 8 | + "repository": { |
| 9 | + "type": "git", |
| 10 | + "url": "git+https://github.com/Developmint/vue-if-bot" |
| 11 | + }, |
| 12 | + "bugs": { |
| 13 | + "url": "https://github.com/Developmint/vue-if-bot/issues" |
| 14 | + }, |
| 15 | + "scripts": { |
| 16 | + "lint": "eslint lib test", |
| 17 | + "test": "npm run lint && jest", |
| 18 | + "release": "standard-version && git push --follow-tags && npm publish", |
| 19 | + "commitlint": "commitlint -e $GIT_PARAMS", |
| 20 | + "coverage": "codecov" |
| 21 | + }, |
| 22 | + "files": [ |
| 23 | + "lib" |
| 24 | + ], |
| 25 | + "keywords": [ |
| 26 | + "vue", |
| 27 | + "vuejs", |
| 28 | + "bot", |
| 29 | + "user-agent", |
| 30 | + "useragent", |
| 31 | + "hide", |
| 32 | + "consent", |
| 33 | + "cookie", |
| 34 | + "component", |
| 35 | + "plugin" |
| 36 | + ], |
| 37 | + "engines": { |
| 38 | + "node": ">=8.0.0", |
| 39 | + "npm": ">=5.0.0" |
| 40 | + }, |
| 41 | + "jest": { |
| 42 | + "moduleFileExtensions": [ |
| 43 | + "js", |
| 44 | + "json", |
| 45 | + "vue" |
| 46 | + ], |
| 47 | + "transform": { |
| 48 | + "^.+\\.js$": "<rootDir>/node_modules/babel-jest", |
| 49 | + ".*\\.(vue)$": "<rootDir>/node_modules/vue-jest" |
| 50 | + }, |
| 51 | + "moduleNameMapper": { |
| 52 | + "^@/(.*)$": "<rootDir>/lib/$1" |
| 53 | + }, |
| 54 | + "snapshotSerializers": [ |
| 55 | + "<rootDir>/node_modules/jest-serializer-vue" |
| 56 | + ], |
| 57 | + "collectCoverage": true, |
| 58 | + "coveragePathIgnorePatterns": [ |
| 59 | + "/node_modules/" |
| 60 | + ] |
| 61 | + }, |
| 62 | + "devDependencies": { |
| 63 | + "@commitlint/cli": "^6.1.3", |
| 64 | + "@commitlint/config-conventional": "^6.1.3", |
| 65 | + "@vue/server-test-utils": "^1.0.0-beta.15", |
| 66 | + "@vue/test-utils": "^1.0.0-beta.15", |
| 67 | + "babel-core": "^6.26.0", |
| 68 | + "babel-jest": "^22.4.4", |
| 69 | + "babel-loader": "^7.1.2", |
| 70 | + "babel-preset-vue-app": "^2.0.0", |
| 71 | + "cheerio": "^1.0.0-rc.2", |
| 72 | + "codecov": "latest", |
| 73 | + "cross-env": "^5.1.5", |
| 74 | + "eslint": "^4.19.1", |
| 75 | + "eslint-config-standard": "^12.0.0-alpha.0", |
| 76 | + "eslint-plugin-import": "^2.12.0", |
| 77 | + "eslint-plugin-jest": "latest", |
| 78 | + "eslint-plugin-node": "^6.0.1", |
| 79 | + "eslint-plugin-promise": "^3.7.0", |
| 80 | + "eslint-plugin-standard": "^3.1.0", |
| 81 | + "husky": "^1.0.0-rc.2", |
| 82 | + "jest": "latest", |
| 83 | + "jest-serializer-vue": "^1.0.0", |
| 84 | + "jsdom": "latest", |
| 85 | + "standard-version": "latest", |
| 86 | + "vue-jest": "^2.6.0", |
| 87 | + "vue-loader": "^15.1.0", |
| 88 | + "vue-router": "^3.0.1", |
| 89 | + "vue-server-renderer": "^2.5.16", |
| 90 | + "vue-template-compiler": "^2.5.16", |
| 91 | + "webpack": "^4.8.3", |
| 92 | + "webpack-dev-server": "^3.1.4" |
| 93 | + }, |
| 94 | + "husky": { |
| 95 | + "hooks": { |
| 96 | + "pre-commit": "npm run lint", |
| 97 | + "commit-msg": "npm run commitlint" |
| 98 | + } |
| 99 | + }, |
| 100 | + "dependencies": { |
| 101 | + "vue": "^2.5.16" |
| 102 | + } |
| 103 | +} |
0 commit comments