package.json 868 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
{
  "name": "xmldoc",
  "description": "A lightweight XML Document class for JavaScript.",
  "author": {
    "name": "Nick Farina",
    "email": "nfarina@gmail.com",
    "url": "http://nfarina.com"
  },
  "version": "1.1.2",
  "main": "./index",
  "scripts": {
    "test": "tap test/*.js",
    "coverage": "npm test -- --cov --coverage-report=html"
  },
  "dependencies": {
    "sax": "^1.2.1"
  },
  "license": {
    "type": "MIT",
    "url": "https://raw.github.com/nfarina/xmldoc-js/master/LICENSE"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/nfarina/xmldoc.git"
  },
  "contributors": [
    {
      "name": "Nick Farina",
      "email": "nfarina@gmail.com"
    },
    {
      "name": "Caleb Meredith",
      "email": "calebmeredith8@gmail.com"
    }
  ],
  "readmeFilename": "README.md",
  "devDependencies": {
    "tap": "^8.0.1"
  }
}