-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "fetch-multiple",
"version": "1.2.3",
"description": "A utility function to help you fetch multiple different resources in one promise",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"prepublish": "npm run build",
"start": "watch 'npm run build' src",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"babel": {
"presets": [
"latest"
]
},
"jest": {
"automock": false,
"setupFiles": [
"./tests/config.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/seancrater/fetch-multiple.git"
},
"keywords": [
"javascript",
"fetch",
"promise",
"multiple",
"requests",
"multi"
],
"author": "Sean Crater",
"license": "ISC",
"bugs": {
"url": "https://github.com/seancrater/fetch-multiple/issues"
},
"homepage": "https://github.com/seancrater/fetch-multiple#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"jest": "^22.1.4",
"jest-fetch-mock": "^1.4.1",
"watch": "^1.0.2"
}
}