-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 873 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
{
"name": "fetch-http-wrapper",
"version": "0.1.2",
"description": "A Simple, Intuitive and expressive http client built on top of fetch",
"main": "dist/lib/index.js",
"scripts": {
"build:dev": "cross-env NODE_ENV=devlopment tsc --p tsconfig.json",
"dev:watch": "cross-env NODE_ENV=devlopment tsc --outDir dist --pretty --watch",
"test": "ava tests"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/mohammedmanssour/fetch-http-wrapper.git"
},
"author": "Mohammed Manssour <manssour.mohammed@gmail.com>",
"license": "ISC",
"devDependencies": {
"@ef-carbon/fetch": "^2.1.3",
"@types/node": "^10.12.18",
"@types/node-fetch": "^2.1.4",
"ava": "^1.0.1",
"cross-env": "^5.2.0",
"node-fetch": "^2.3.0",
"prettier": "1.15.3",
"typescript": "^3.2.2"
}
}