package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@bthlabs/react-custom-popup",
  3. "version": "1.0.3",
  4. "private": false,
  5. "description": "React component for simply building custom popups and modals.",
  6. "main": "./lib/react-custom-popup.js",
  7. "scripts": {
  8. "build": "./node_modules/.bin/grunt dist",
  9. "build:example": "./node_modules/.bin/grunt example",
  10. "lint": "./node_modules/.bin/grunt eslint",
  11. "test": "./node_modules/.bin/grunt karma:dist",
  12. "test:watch": "./node_modules/.bin/karma start"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://git.bthlabs.pl/tomekwojcik/react-custom-popup.git"
  17. },
  18. "files": [
  19. "lib"
  20. ],
  21. "author": "Tomek Wójcik <contact@bthlabs.pl> (https://www.bthlabs.pl/)",
  22. "license": "MIT",
  23. "devDependencies": {
  24. "@babel/core": "7.2.2",
  25. "@babel/preset-env": "7.3.1",
  26. "@babel/preset-react": "7.0.0",
  27. "babel-eslint": "8.2.1",
  28. "babel-loader": "8.0.5",
  29. "enzyme": "3.5.0",
  30. "enzyme-adapter-react-16": "1.3.0",
  31. "eslint-plugin-jasmine": "2.9.1",
  32. "grunt": "1.0.1",
  33. "grunt-contrib-clean": "1.1.0",
  34. "grunt-contrib-sass": "1.0.0",
  35. "grunt-karma": "2.0.0",
  36. "grunt-webpack": "3.0.2",
  37. "gruntify-eslint": "4.0.0",
  38. "jasmine-core": "2.8.0",
  39. "karma": "2.0.0",
  40. "karma-chrome-launcher": "2.2.0",
  41. "karma-jasmine": "1.1.1",
  42. "karma-mocha-reporter": "2.2.5",
  43. "karma-sourcemap-loader": "0.3.7",
  44. "karma-webpack": "2.0.9",
  45. "react": "16.4.0",
  46. "react-dom": "16.4.0",
  47. "underscore": "1.8.3",
  48. "webpack": "3.10.0",
  49. "webpack-uglify-js-plugin": "1.1.9"
  50. },
  51. "dependencies": {
  52. "classnames": "2.2.6",
  53. "prop-types": "15.6.2"
  54. },
  55. "peerDependencies": {
  56. "react": ">=16.4.0",
  57. "react-dom": ">=16.4.0"
  58. }
  59. }