cms/drupal/profiles/drustack/libraries/backbone/package.json
author ymh <ymh.work@gmail.com>
Thu, 16 Nov 2017 16:31:09 +0100
changeset 554 f28a539ba106
parent 541 e756a8c72c3d
permissions -rwxr-xr-x
small vagrant correction for removing ansible warning + create new version

{
  "name"          : "backbone",
  "description"   : "Give your JS App some Backbone with Models, Views, Collections, and Events.",
  "url"           : "http://backbonejs.org",
  "keywords"      : ["model", "view", "controller", "router", "server", "client", "browser"],
  "author"        : "Jeremy Ashkenas",
  "dependencies"  : {
    "underscore"  : ">=1.7.0"
  },
  "devDependencies": {
    "coffee-script": "1.7.1",
    "docco": "0.7.0",
    "karma": "^0.12.31",
    "karma-phantomjs-launcher": "^0.1.4",
    "karma-qunit": "^0.1.5",
    "qunitjs": "^1.18.0",
    "uglify-js": "^2.4.17"
  },
  "scripts": {
    "test": "./node_modules/karma/bin/karma start && coffee test/model.coffee",
    "build": "uglifyjs backbone.js --mangle --source-map backbone-min.map -o backbone-min.js",
    "doc": "docco backbone.js && docco examples/todos/todos.js examples/backbone.localStorage.js",
    "lint": "jsl -nofilelisting -nologo -conf docs/jsl.conf -process backbone.js"
  },
  "main"          : "backbone.js",
  "version"       : "1.2.2",
  "license"       : "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/jashkenas/backbone.git"
  },
  "files": [
    "backbone.js", "backbone-min.js", "backbone-min.map", "LICENSE"
  ]
}