|
| 1 | +{ |
| 2 | + "name": "nuxt-webfontloader", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "Efficient web font loading has never been easier!", |
| 5 | + "license": "MIT", |
| 6 | + "contributors": [ |
| 7 | + { |
| 8 | + "name": "Alexander Lichter <[email protected]>" |
| 9 | + } |
| 10 | + ], |
| 11 | + "main": "lib/module.js", |
| 12 | + "repository": { |
| 13 | + "type": "git", |
| 14 | + "url": "git+https://github.com/Developmint/nuxt-webfontloader" |
| 15 | + }, |
| 16 | + "bugs": { |
| 17 | + "url": "https://github.com/Developmint/nuxt-webfontloader/issues" |
| 18 | + }, |
| 19 | + "publishConfig": { |
| 20 | + "access": "public" |
| 21 | + }, |
| 22 | + "scripts": { |
| 23 | + "dev": "nuxt -c test/fixture/configs/default.js", |
| 24 | + "lint": "eslint lib test", |
| 25 | + "test": "yarn run lint && jest", |
| 26 | + "release": "standard-version && git push --follow-tags && npm publish", |
| 27 | + "commitlint": "commitlint -e $GIT_PARAMS", |
| 28 | + "coverage": "codecov" |
| 29 | + }, |
| 30 | + "eslintIgnore": [ |
| 31 | + "lib/**/*.template.js" |
| 32 | + ], |
| 33 | + "files": [ |
| 34 | + "lib" |
| 35 | + ], |
| 36 | + "keywords": [ |
| 37 | + "nuxtjs", |
| 38 | + "nuxt", |
| 39 | + "nuxt-module", |
| 40 | + "font", |
| 41 | + "webfont", |
| 42 | + "webfontloader" |
| 43 | + ], |
| 44 | + "engines": { |
| 45 | + "node": ">=8.0.0", |
| 46 | + "npm": ">=5.0.0" |
| 47 | + }, |
| 48 | + "jest": { |
| 49 | + "testEnvironment": "node", |
| 50 | + "collectCoverage": true, |
| 51 | + "coveragePathIgnorePatterns": [ |
| 52 | + "/node_modules/", |
| 53 | + "/test/fixture" |
| 54 | + ], |
| 55 | + "forceExit": true |
| 56 | + }, |
| 57 | + "dependencies": { |
| 58 | + "webfontloader": "^1.6.28" |
| 59 | + }, |
| 60 | + "devDependencies": { |
| 61 | + "@commitlint/cli": "^7.2.1", |
| 62 | + "@commitlint/config-conventional": "^7.1.2", |
| 63 | + "@nuxtjs/eslint-config": "^0.0.1", |
| 64 | + "babel-eslint": "^10.0.1", |
| 65 | + "codecov": "^3.1.0", |
| 66 | + "eslint": "^5.8.0", |
| 67 | + "eslint-config-standard": "^12.0.0", |
| 68 | + "eslint-plugin-import": "^2.14.0", |
| 69 | + "eslint-plugin-jest": "^22.0.0", |
| 70 | + "eslint-plugin-node": "^8.0.0", |
| 71 | + "eslint-plugin-promise": "^4.0.1", |
| 72 | + "eslint-plugin-standard": "^4.0.0", |
| 73 | + "eslint-plugin-vue": "^5.0.0-beta.3", |
| 74 | + "get-port": "^4.0.0", |
| 75 | + "husky": "^1.1.3", |
| 76 | + "jest": "^23.6.0", |
| 77 | + "jsdom": "^13.0.0", |
| 78 | + "nuxt-edge": "^2.4.0-25716240.4adbf29", |
| 79 | + "standard-version": "^4.4.0" |
| 80 | + }, |
| 81 | + "husky": { |
| 82 | + "hooks": { |
| 83 | + "pre-commit": "yarn run lint", |
| 84 | + "commit-msg": "yarn run commitlint" |
| 85 | + } |
| 86 | + } |
| 87 | +} |
0 commit comments