-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "instant-request",
"version": "1.0.1",
"description": "Client/server agnostic Http Request library utilising the `fetch` API.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --require babel-core/register --require babel-polyfill",
"build": "babel ./src -d ./lib",
"build:watch": "babel -w ./src -d ./lib",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cjmyles/instant-request.git"
},
"keywords": [
"http",
"request",
"fetch",
"express",
"react"
],
"author": "Craig Myles",
"license": "MIT",
"dependencies": {
"http-status-codes": "^1.3.0",
"node-fetch": "^2.2.1",
"warning": "^4.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"mocha": "^5.2.0"
}
}