package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "bootstrap",
  3. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  4. "version": "3.3.4",
  5. "keywords": [
  6. "css",
  7. "less",
  8. "mobile-first",
  9. "responsive",
  10. "front-end",
  11. "framework",
  12. "web"
  13. ],
  14. "homepage": "http://getbootstrap.com",
  15. "author": "Twitter, Inc.",
  16. "scripts": {
  17. "test": "grunt test"
  18. },
  19. "style": "dist/css/bootstrap.css",
  20. "less": "less/bootstrap.less",
  21. "main": "./dist/js/npm",
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/twbs/bootstrap.git"
  25. },
  26. "bugs": {
  27. "url": "https://github.com/twbs/bootstrap/issues"
  28. },
  29. "license": {
  30. "type": "MIT",
  31. "url": "https://github.com/twbs/bootstrap/blob/master/LICENSE"
  32. },
  33. "devDependencies": {
  34. "btoa": "~1.1.2",
  35. "glob": "~5.0.3",
  36. "grunt": "~0.4.5",
  37. "grunt-autoprefixer": "~2.2.0",
  38. "grunt-banner": "~0.3.1",
  39. "grunt-contrib-clean": "~0.6.0",
  40. "grunt-contrib-compress": "~0.13.0",
  41. "grunt-contrib-concat": "~0.5.1",
  42. "grunt-contrib-connect": "~0.9.0",
  43. "grunt-contrib-copy": "~0.8.0",
  44. "grunt-contrib-csslint": "~0.4.0",
  45. "grunt-contrib-cssmin": "~0.12.2",
  46. "grunt-contrib-jade": "~0.14.1",
  47. "grunt-contrib-jshint": "~0.11.0",
  48. "grunt-contrib-less": "~1.0.0",
  49. "grunt-contrib-qunit": "~0.5.2",
  50. "grunt-contrib-uglify": "~0.8.0",
  51. "grunt-contrib-watch": "~0.6.1",
  52. "grunt-csscomb": "~3.0.0",
  53. "grunt-exec": "~0.4.6",
  54. "grunt-html": "~4.0.1",
  55. "grunt-jekyll": "~0.4.2",
  56. "grunt-jscs": "~1.5.0",
  57. "grunt-saucelabs": "~8.6.0",
  58. "grunt-sed": "~0.1.1",
  59. "load-grunt-tasks": "~3.1.0",
  60. "markdown-it": "^4.0.1",
  61. "npm-shrinkwrap": "^200.1.0",
  62. "time-grunt": "^1.1.0"
  63. },
  64. "engines": {
  65. "node": ">=0.10.1"
  66. },
  67. "files": [
  68. "dist",
  69. "fonts",
  70. "grunt/*.js",
  71. "grunt/*.json",
  72. "js/*.js",
  73. "less/**/*.less",
  74. "Gruntfile.js",
  75. "LICENSE"
  76. ],
  77. "jspm": {
  78. "main": "js/bootstrap",
  79. "directories": {
  80. "example": "examples",
  81. "lib": "dist"
  82. },
  83. "shim": {
  84. "js/bootstrap": {
  85. "imports": "jquery",
  86. "exports": "$"
  87. }
  88. },
  89. "buildConfig": {
  90. "uglify": true
  91. }
  92. }
  93. }