generated from jeroentvb/node-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 875 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": "rws-waterinfo-api",
"version": "1.0.2",
"description": "Nodejs wrapper for the RWS waterinfo api",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeroentvb/rws-waterinfo-api-node.git"
},
"author": "jeroentvb",
"license": "ISC",
"bugs": {
"url": "https://github.com/jeroentvb/rws-waterinfo-api-node/issues"
},
"devDependencies": {
"@jeroentvb/eslint-config-typescript": "^1.3.0",
"@types/node": "^17.0.18",
"eslint": "^8.11.0",
"jeroentvb-helper": "github:jeroentvb/jeroentvb-helper",
"typescript": "^4.5.5"
},
"dependencies": {
"node-fetch": "^3.2.10"
}
}