forked from lquixada/cross-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 KB
/
package.json
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "cross-fetch",
"version": "1.1.0",
"description": "Universal WHATWG Fetch API for Node, Browsers and React Native",
"homepage": "https://github.com/lquixada/cross-fetch",
"main": "dist/node.js",
"browser": "dist/browser.js",
"scripts": {
"prebuild": "npm test -s",
"prepublishOnly": "npm run -s build",
"prepush": "npm test -s",
"build": "rollup -c",
"test": "npm run -s mocha && npm run -s lint",
"mocha": "mocha",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/lquixada/cross-fetch.git"
},
"author": "Leonardo Quixada <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lquixada/cross-fetch/issues"
},
"dependencies": {
"node-fetch": "1.7.3",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.10.0",
"husky": "0.14.3",
"mocha": "4.0.1",
"nock": "9.0.27",
"rollup": "0.50.0",
"rollup-plugin-copy": "0.2.3",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-uglify": "2.0.1"
},
"files": [
"dist",
"polyfill"
],
"keywords": [
"fetch",
"isomorphic",
"universal",
"node",
"react",
"native",
"browser",
"ponyfill",
"whatwg",
"xhr",
"ajax"
]
}