-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "tide-api",
"version": "1.8.0",
"description": "Utility intended to easily consume a rest api in javascript projects",
"main": "dist/index.js",
"files": [
"*"
],
"scripts": {
"build": "webpack --mode production",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarkEhr/tide-api.git"
},
"keywords": [
"api",
"rest",
"consumer"
],
"author": "Mark Ehrlich",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarkEhr/tide-api/issues"
},
"homepage": "https://github.com/MarkEhr/tide-api#readme",
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@types/jest": "^29.5.14",
"babel-loader": "^8.2.3",
"fetch-mock": "^12.2.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.4.7",
"nock": "^13.2.2",
"node-fetch": "^2.6.7",
"redux": "^4.1.2",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"js-md5": "^0.7.3",
"qs": "^6.10.3",
"url-join": "^4.0.1",
"whatwg-fetch": "^3.6.2"
}
}