package.json 1.49 KB
Newer Older
Chris Aniszczyk's avatar
Chris Aniszczyk committed
1
{
Mark Otto's avatar
Mark Otto committed
2
3
  "name": "bootstrap",
  "description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development.",
Mark Otto's avatar
Mark Otto committed
4
  "version": "3.1.0",
Mark Otto's avatar
Mark Otto committed
5
6
7
8
9
  "keywords": ["bootstrap", "css"],
  "homepage": "http://getbootstrap.com",
  "author": "Twitter, Inc.",
  "scripts": { "test": "grunt test" },
  "repository": {
10
      "type": "git"
Chris Rebert's avatar
Chris Rebert committed
11
    , "url": "https://github.com/twbs/bootstrap.git"
Mark Otto's avatar
Mark Otto committed
12
13
  },
  "bugs": {
XhmikosR's avatar
XhmikosR committed
14
      "url": "https://github.com/twbs/bootstrap/issues"
Mark Otto's avatar
Mark Otto committed
15
16
  },
  "licenses": [
17
    {
Mark Otto's avatar
Mark Otto committed
18
19
      "type": "MIT",
      "url": "https://github.com/twbs/bootstrap/blob/master/LICENSE"
20
    }
Mark Otto's avatar
Mark Otto committed
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  ],
  "devDependencies": {
    "btoa": "~1.1.1",
    "grunt": "~0.4.1",
    "grunt-banner": "~0.2.0",
    "grunt-contrib-clean": "~0.5.0",
    "grunt-contrib-concat": "~0.3.0",
    "grunt-contrib-connect": "~0.5.0",
    "grunt-contrib-copy": "~0.4.1",
    "grunt-contrib-csslint": "~0.2.0",
    "grunt-contrib-jshint": "~0.7.0",
    "grunt-contrib-less": "~0.8.0",
    "grunt-contrib-qunit": "~0.3.0",
    "grunt-contrib-uglify": "~0.2.4",
    "grunt-contrib-watch": "~0.5.3",
    "grunt-csscomb": "~1.1.0",
37
    "grunt-html-validation": "~0.1.11",
Mark Otto's avatar
Mark Otto committed
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
    "grunt-jekyll": "~0.4.0",
    "grunt-jscs-checker": "~0.2.5",
    "grunt-saucelabs": "~4.1.2",
    "grunt-sed": "~0.1.1",
    "load-grunt-tasks": "~0.2.0"
  },
  "jspm": {
    "main": "js/bootstrap",
    "directories": { "lib": "dist" },
    "shim": {
      "js/bootstrap": {
        "imports": "jquery",
        "exports": "$"
      }
    },
    "buildConfig": { "uglify": true }
54
  }
55
}