-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 937 Bytes
/
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
{
"name": "simple-fetch-library",
"version": "1.0.0",
"description": "A simple FETCH API Library for making HTTP Requests",
"main": "src/simpleFetch.js",
"scripts": {
"build": "babel src --out-dir dist -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BolajiAyodeji/simple-ajax-library.git"
},
"keywords": [
"javascript",
"fetch library",
"http request",
"json",
"http library",
"asynchronous programming"
],
"author": "Bolaji Ayodeji",
"license": "ISC",
"bugs": {
"url": "https://github.com/BolajiAyodeji/simple-ajax-library/issues"
},
"homepage": "https://github.com/BolajiAyodeji/simple-ajax-library#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.4.2"
},
"dependencies": {
"@babel/polyfill": "^7.4.3"
}
}