package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "schema-utils",
  3. "version": "0.3.0",
  4. "description": "Webpack Schema Validation Utilities",
  5. "main": "dist/cjs.js",
  6. "files": [
  7. "dist"
  8. ],
  9. "engines": {
  10. "node": ">= 4.3 < 5.0.0 || >= 5.10"
  11. },
  12. "scripts": {
  13. "start": "yarn run build -- -w",
  14. "prebuild": "yarn run clean",
  15. "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'",
  16. "clean": "del-cli dist",
  17. "lint": "eslint --cache src test",
  18. "lint-staged": "lint-staged",
  19. "security": "nsp check",
  20. "test": "jest",
  21. "test:watch": "jest --watch",
  22. "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
  23. "travis:coverage": "yarn run test:coverage",
  24. "travis:lint": "yarn run lint && yarn run security",
  25. "travis:test": "yarn run test",
  26. "webpack-defaults": "webpack-defaults",
  27. "prepublish": "yarn run build",
  28. "release": "yarn run standard-version"
  29. },
  30. "dependencies": {
  31. "ajv": "^5.0.0"
  32. },
  33. "devDependencies": {
  34. "babel-cli": "^6.24.1",
  35. "babel-jest": "^19.0.0",
  36. "babel-plugin-transform-object-rest-spread": "^6.23.0",
  37. "babel-polyfill": "^6.23.0",
  38. "babel-preset-env": "^1.4.0",
  39. "babel-preset-webpack": "^1.0.0",
  40. "codecov": "^2.0.1",
  41. "cross-env": "^4.0.0",
  42. "del-cli": "^0.2.1",
  43. "eslint": "^3.19.0",
  44. "eslint-config-webpack": "^1.2.1",
  45. "eslint-plugin-import": "^2.2.0",
  46. "jest": "^19.0.2",
  47. "lint-staged": "^3.4.0",
  48. "nsp": "^2.6.3",
  49. "pre-commit": "^1.2.2",
  50. "standard-version": "^4.0.0",
  51. "webpack-defaults": "^0.4.5"
  52. },
  53. "pre-commit": "lint-staged",
  54. "lint-staged": {
  55. "*.js": [
  56. "eslint --fix",
  57. "git add"
  58. ]
  59. },
  60. "eslintConfig": {
  61. "extends": "webpack",
  62. "installedESLint": true
  63. },
  64. "keywords": [
  65. "webpack",
  66. "plugin",
  67. "es2015"
  68. ],
  69. "author": "Webpack Contrib (https://github.com/webpack-contrib)",
  70. "contributors": [
  71. {
  72. "name": "Juho Vepsäläinen <@bebraw>"
  73. },
  74. {
  75. "name": "Joshua Wiens <@d3viant0ne>"
  76. },
  77. {
  78. "name": "Michael Ciniawsky <@michael-ciniawsky>"
  79. }
  80. ],
  81. "repository": {
  82. "type": "git",
  83. "url": "git+https://github.com/webpack-contrib/schema-utils.git"
  84. },
  85. "bugs": {
  86. "url": "https://github.com/webpack-contrib/schema-utils/issues"
  87. },
  88. "homepage": "https://github.com/webpack-contrib/schema-utils#readme",
  89. "license": "MIT"
  90. }