-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 859 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
{
"name": "@fetching/core",
"version": "0.3.3",
"typings": "dist/index",
"description": "Strongly-typed REST API client for web apps.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx tsc --watch",
"build": "npx tsc",
"prepare": "npx tsc",
"release": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/ConnorJamesLow/fetching.git"
},
"keywords": [
"typescript",
"REST"
],
"author": "",
"license": "MIT",
"files": [
"dist/**"
],
"dependencies": {
"@types/node-fetch": "^2.5.5",
"typescript": "^3.8.3",
"unfetch": "^4.1.0"
},
"devDependencies": {
"node-fetch": "^2.6.0"
}
}