package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "@develar/schema-utils",
  3. "version": "2.6.5",
  4. "description": "webpack Validation Utils",
  5. "license": "MIT",
  6. "repository": "webpack/schema-utils",
  7. "author": "webpack Contrib (https://github.com/webpack-contrib)",
  8. "homepage": "https://github.com/webpack/schema-utils",
  9. "bugs": "https://github.com/webpack/schema-utils/issues",
  10. "funding": {
  11. "type": "opencollective",
  12. "url": "https://opencollective.com/webpack"
  13. },
  14. "main": "dist/index.js",
  15. "types": "declarations/index.d.ts",
  16. "engines": {
  17. "node": ">= 8.9.0"
  18. },
  19. "scripts": {
  20. "start": "npm run build -- -w",
  21. "clean": "del-cli dist declarations",
  22. "prebuild": "npm run clean",
  23. "build:types": "tsc --declaration --emitDeclarationOnly --outDir declarations && prettier \"declarations/**/*.ts\" --write",
  24. "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  25. "build": "npm-run-all -p \"build:**\"",
  26. "commitlint": "commitlint --from=master",
  27. "security": "npm audit",
  28. "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
  29. "lint:js": "eslint --cache .",
  30. "lint:types": "tsc --pretty --noEmit",
  31. "lint": "npm-run-all -l -p \"lint:**\"",
  32. "test:only": "cross-env NODE_ENV=test jest",
  33. "test:watch": "npm run test:only -- --watch",
  34. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  35. "pretest": "npm run lint",
  36. "test": "npm run test:coverage",
  37. "prepare": "npm run build",
  38. "release": "standard-version",
  39. "defaults": "webpack-defaults"
  40. },
  41. "files": [
  42. "dist",
  43. "declarations"
  44. ],
  45. "dependencies": {
  46. "ajv": "^6.12.0",
  47. "ajv-keywords": "^3.4.1"
  48. },
  49. "devDependencies": {
  50. "@babel/cli": "^7.8.3",
  51. "@babel/core": "^7.8.3",
  52. "@babel/preset-env": "^7.8.3",
  53. "@commitlint/cli": "^8.3.5",
  54. "@commitlint/config-conventional": "^8.3.4",
  55. "@types/json-schema": "^7.0.4",
  56. "@webpack-contrib/defaults": "^6.3.0",
  57. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  58. "babel-jest": "^24.9.0",
  59. "commitlint-azure-pipelines-cli": "^1.0.3",
  60. "cross-env": "^6.0.3",
  61. "del": "^5.1.0",
  62. "del-cli": "^3.0.0",
  63. "eslint": "^6.8.0",
  64. "eslint-config-prettier": "^6.9.0",
  65. "eslint-plugin-import": "^2.20.0",
  66. "husky": "^4.0.10",
  67. "jest": "^24.9.0",
  68. "jest-junit": "^10.0.0",
  69. "lint-staged": "^9.5.0",
  70. "npm-run-all": "^4.1.5",
  71. "prettier": "^1.19.1",
  72. "standard-version": "^7.0.1",
  73. "typescript": "^3.7.5"
  74. },
  75. "keywords": [
  76. "webpack"
  77. ]
  78. }