-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.19 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.19 KB
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
{
"name": "@rill/fetcher",
"description": "Isomoprhic fetch api utility for Rill.",
"version": "4.1.0",
"author": "Dylan Piercey <pierceydylan@gmail.com>",
"bugs": "https://github.com/rill-js/fetcher/issues",
"dependencies": {
"agentkeepalive": "^3.3.0",
"events-light": "^1.0.5",
"isomorphic-fetch": "^2.2.1",
"isomorphic-form-data": "1.0.0",
"mini-querystring": "^1.0.2",
"mini-url": "^1.6.1"
},
"devDependencies": {
"mocha": "^3.4.2",
"rill": "^4.3.5",
"snazzy": "^6.0.0",
"standard": "^9.0.2",
"supertest": "^3.0.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/rill-js/fetcher",
"keywords": [
"ajax",
"fetch",
"isomorphic",
"middleware",
"rill",
"universal"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/rill-js/fetcher"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"test": "npm run lint && mocha ./test/*.test.js"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach",
"fetch",
"FormData",
"Headers"
]
}
}