{
  "name": "fetch-ponyfill",
  "version": "4.1.0",
  "description": "A ponyfill (doesn't overwrite the native fetch) for the Fetch specification https://fetch.spec.whatwg.org.",
  "main": "fetch-node.js",
  "browser": "build/fetch-browser.js",
  "config": {
    "web_port": "8088"
  },
  "scripts": {
    "test": "mocha tests/fetch-node.spec.js",
    "lint": "eslint .",
    "pretest:browserify": "npm run build && browserify tests/fetch-browser.spec.js --outfile build/browser-test-bundle.js",
    "test:browserify": "testem",
    "pretest:webpack": "npm run build && webpack tests/fetch-browser.spec.js build/browser-test-bundle.js",
    "test:webpack": "testem",
    "build": "rimraf build && mkdirp build && node build.js > build/fetch-browser.js",
    "prepublish": "npm run build"
  },
  "author": "Mark Stanley Everitt",
  "repository": {
    "type": "git",
    "url": "git://github.com/qubyte/fetch-ponyfill.git"
  },
  "license": "MIT",
  "keywords": [
    "fetch",
    "ponyfill"
  ],
  "dependencies": {
    "node-fetch": "~1.7.1"
  },
  "devDependencies": {
    "browserify": "~13.0.0",
    "eslint": "~3.3.1",
    "eslint-config-qubyte": "~1.0.1",
    "mkdirp": "~0.5.1",
    "mocha": "~2.4.5",
    "nock": "~8.0.0",
    "promise": "~7.1.1",
    "rimraf": "~2.5.2",
    "sinon": "~1.17.4",
    "testem": "1.12.0",
    "webpack": "~1.13.0",
    "whatwg-fetch": "~2.0.3"
  },
  "files": [
    "fetch-node.js",
    "build/fetch-browser.js"
  ]
}
