package.json 667 字节
Newer Older
D
David Graham 已提交
1
{
2
  "name": "whatwg-fetch",
D
David Graham 已提交
3
  "description": "A window.fetch polyfill.",
M
Mislav Marohnić 已提交
4
  "version": "2.0.4",
5 6
  "main": "./dist/fetch.umd.js",
  "module": "./fetch.js",
7
  "repository": "github/fetch",
8
  "license": "MIT",
D
David Graham 已提交
9
  "devDependencies": {
10
    "abortcontroller-polyfill": "1.1.2",
J
Joshua Peek 已提交
11
    "chai": "1.10.0",
M
Mislav Marohnić 已提交
12 13
    "eslint": "^4.19.1",
    "eslint-plugin-github": "^1.0.0",
J
Joshua Peek 已提交
14
    "mocha": "2.1.0",
15
    "mocha-phantomjs-core": "2.0.1",
16
    "promise-polyfill": "6.0.2",
17
    "rollup": "^0.59.1",
18
    "url-search-params": "0.6.1"
19
  },
D
David Graham 已提交
20
  "files": [
21
    "LICENSE",
22
    "dist/fetch.umd.js",
23
    "fetch.js"
M
Mislav Marohnić 已提交
24 25
  ],
  "scripts": {
26
    "prepublish": "make dist/fetch.umd.js",
M
Mislav Marohnić 已提交
27 28
    "test": "make"
  }
D
David Graham 已提交
29
}