forked from lquixada/cross-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.75 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "cross-fetch",
"version": "3.0.2",
"description": "Universal WHATWG Fetch API for Node, Browsers and React Native",
"homepage": "https://github.com/lquixada/cross-fetch",
"main": "dist/node-ponyfill.js",
"browser": "dist/browser-ponyfill.js",
"react-native": "dist/react-native-ponyfill.js",
"typings": "index.d.ts",
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "make build && lint-staged"
}
},
"standard": {
"env": [
"mocha",
"browser"
],
"globals": [
"expect",
"assert",
"chai",
"sinon"
],
"ignore": [
"/dist/",
"bundle.*.js"
]
},
"nyc": {
"temp-dir": ".reports/.coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/lquixada/cross-fetch.git"
},
"author": "Leonardo Quixada <lquixada@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lquixada/cross-fetch/issues"
},
"dependencies": {
"node-fetch": "2.3.0",
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"chai": "4.2.0",
"codecov": "3.2.0",
"husky": "1.3.1",
"lint-staged": "8.1.5",
"mocha": "6.0.2",
"mocha-headless-chrome": "2.0.1",
"nock": "10.0.6",
"nyc": "13.3.0",
"ora": "3.2.0",
"rollup": "1.7.3",
"rollup-plugin-copy": "0.2.3",
"rollup-plugin-uglify": "6.0.2",
"sinon": "7.3.0",
"standard": "12.0.1",
"webpack": "4.29.6",
"webpack-cli": "3.3.0"
},
"files": [
"dist",
"polyfill",
"index.d.ts"
],
"keywords": [
"fetch",
"isomorphic",
"universal",
"node",
"react",
"native",
"browser",
"ponyfill",
"whatwg",
"xhr",
"ajax"
]
}