-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "fetch-everywhere",
"version": "1.0.5",
"description": "Isomorphic WHATWG Fetch API, for ALL node based environments.",
"browser": "fetch-npm-browserify.js",
"main": "fetch-npm-node.js",
"scripts": {
"files": "find . -name '*.js' ! -path './node_modules/*' ! -path './bower_components/*'",
"test": "jshint `npm run -s files` && lintspaces -i js-comments -e .editorconfig `npm run -s files` && mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/lucasfeliciano/fetch-everywhere.git"
},
"author": "Lucas Feliciano <mail@lucasfeliciano.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucasfeliciano/fetch-everywhere/issues"
},
"homepage": "https://github.com/lucasfeliciano/fetch-everywhere/issues",
"dependencies": {
"node-fetch": "^1.0.1",
"whatwg-fetch": ">=0.10.0"
},
"devDependencies": {
"chai": "^1.10.0",
"es6-promise": "^2.0.1",
"jshint": "^2.5.11",
"lintspaces-cli": "0.0.4",
"mocha": "^2.1.0",
"nock": "^0.56.0",
"npm-prepublish": "^1.0.2"
},
"keywords": [
"fetch",
"isomorphic-fetch",
"http",
"request",
"webpack",
"browserify",
"react-native",
"browser",
"whatwg-fetch",
"whatwg"
]
}