https://github.com/tobie/ua-parser
Raw File
Tip revision: f93510f9eef5e2230b36371c2a25489246bc67d6 authored by Tobie Langel on 26 December 2016, 21:13:21 UTC
Merge pull request #525 from russellwhitaker/rw/add_clojure_to_readme
Tip revision: f93510f
package.json
{
  "name": "ua-parser",
  "description": "A port of Browserscope's user agent parser.",
  "main": "./js/index",
  "version": "0.3.5",
  "maintainers": [
    {
      "name": "Tobie Langel",
      "email": "tobie.langel@gmail.com",
      "web": "http://tobielangel.com"
    }
  ],
  "contributors": [
    {
      "name": "Tobie Langel",
      "email": "tobie.langel@gmail.com",
      "web": "http://tobielangel.com"
    },
    {
      "name": "Lindsey Simon",
      "email": "lsimon@commoner.com",
      "web": "http://www.idreamofuni.com"
    },
    {
      "name": "Philip Tellis",
      "email": "philip@bluesmoon.info",
      "web": "http://bluesmoon.info"
    },
    {
      "name": "Dave Olsen",
      "email": "dmolsen@gmail.com",
      "web": "http://dmolsen.com"
    }
  ],
  "repository": {
    "type": "git",
    "url": "http://github.com/tobie/ua-parser.git"
  },
  "licenses": [
    {
      "type": "MIT",
      "url": "https://raw.github.com/tobie/ua-parser/master/js/LICENSE"
    },
    {
      "type": "Apache-2.0",
      "url": "https://raw.github.com/tobie/ua-parser/master/js/LICENSE"
    }
  ],
  "dependencies": {
    "yamlparser": ">=0.0.2"
  },
  "devDependencies": {
    "mocha": "*"
  },
  "scripts": {
    "test": "mocha -u tdd -R dot ./js/test/*.js"
  }
}
back to top