package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. {
  2. "_from": "url-loader@^1.1.2",
  3. "_id": "url-loader@1.1.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg==",
  6. "_location": "/url-loader",
  7. "_phantomChildren": {
  8. "ajv": "6.12.6",
  9. "ajv-errors": "1.0.1",
  10. "ajv-keywords": "3.5.2"
  11. },
  12. "_requested": {
  13. "type": "range",
  14. "registry": true,
  15. "raw": "url-loader@^1.1.2",
  16. "name": "url-loader",
  17. "escapedName": "url-loader",
  18. "rawSpec": "^1.1.2",
  19. "saveSpec": null,
  20. "fetchSpec": "^1.1.2"
  21. },
  22. "_requiredBy": [
  23. "/@vue/cli-service"
  24. ],
  25. "_resolved": "https://registry.npmjs.org/url-loader/-/url-loader-1.1.2.tgz",
  26. "_shasum": "b971d191b83af693c5e3fea4064be9e1f2d7f8d8",
  27. "_spec": "url-loader@^1.1.2",
  28. "_where": "D:\\jiayue\\pig-ui\\node_modules\\@vue\\cli-service",
  29. "author": {
  30. "name": "Tobias Koppers @sokra"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/webpack-contrib/url-loader/issues"
  34. },
  35. "bundleDependencies": false,
  36. "dependencies": {
  37. "loader-utils": "^1.1.0",
  38. "mime": "^2.0.3",
  39. "schema-utils": "^1.0.0"
  40. },
  41. "deprecated": false,
  42. "description": "A loader for webpack which transforms files into base64 URIs",
  43. "devDependencies": {
  44. "@commitlint/cli": "^5.2.5",
  45. "@commitlint/config-angular": "^5.1.1",
  46. "@commitlint/config-conventional": "^7.0.1",
  47. "@webpack-contrib/defaults": "^2.4.0",
  48. "@webpack-contrib/eslint-config-webpack": "^2.0.2",
  49. "@webpack-contrib/test-utils": "^0.1.2",
  50. "babel-cli": "^6.26.0",
  51. "babel-jest": "^22.0.3",
  52. "babel-plugin-transform-object-rest-spread": "^6.26.0",
  53. "babel-polyfill": "^6.26.0",
  54. "babel-preset-env": "^1.6.1",
  55. "conventional-github-releaser": "^2.0.0",
  56. "cross-env": "^5.1.1",
  57. "del": "^3.0.0",
  58. "del-cli": "^1.1.0",
  59. "eslint": "^4.13.1",
  60. "eslint-plugin-import": "^2.8.0",
  61. "eslint-plugin-prettier": "^2.4.0",
  62. "file-loader": "^1.1.6",
  63. "husky": "^0.14.3",
  64. "jest": "^22.0.3",
  65. "jest-serializer-path": "^0.1.15",
  66. "lint-staged": "^6.0.0",
  67. "memory-fs": "^0.4.1",
  68. "nsp": "^3.1.0",
  69. "pre-commit": "^1.2.2",
  70. "prettier": "^1.9.2",
  71. "standard-version": "^4.2.0",
  72. "webpack": "^4.0.0"
  73. },
  74. "engines": {
  75. "node": ">= 6.9.0"
  76. },
  77. "files": [
  78. "dist"
  79. ],
  80. "homepage": "https://github.com/webpack-contrib/url-loader",
  81. "jest": {
  82. "snapshotSerializers": [
  83. "jest-serializer-path"
  84. ],
  85. "testEnvironment": "node"
  86. },
  87. "keywords": [
  88. "webpack"
  89. ],
  90. "license": "MIT",
  91. "lint-staged": {
  92. "*.js": [
  93. "eslint --fix",
  94. "git add"
  95. ]
  96. },
  97. "main": "dist/cjs.js",
  98. "name": "url-loader",
  99. "peerDependencies": {
  100. "webpack": "^3.0.0 || ^4.0.0"
  101. },
  102. "pre-commit": "lint-staged",
  103. "repository": {
  104. "type": "git",
  105. "url": "git+https://github.com/webpack-contrib/url-loader.git"
  106. },
  107. "scripts": {
  108. "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
  109. "ci:coverage": "npm run test:coverage -- --runInBand",
  110. "ci:lint": "npm run lint && npm run security",
  111. "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
  112. "ci:test": "npm run test -- --runInBand",
  113. "clean": "del-cli dist",
  114. "commitlint": "commitlint",
  115. "commitmsg": "commitlint -e $GIT_PARAMS",
  116. "defaults": "webpack-defaults",
  117. "lint": "eslint --cache src test",
  118. "lint-staged": "lint-staged",
  119. "prebuild": "npm run clean",
  120. "prepublish": "npm run build",
  121. "release": "standard-version",
  122. "release:ci": "conventional-github-releaser -p angular",
  123. "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
  124. "security": "nsp check",
  125. "start": "npm run build -- -w",
  126. "test": "jest",
  127. "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
  128. "test:watch": "jest --watch"
  129. },
  130. "version": "1.1.2"
  131. }