-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "@simonschick/blitzortungapi",
"version": "4.0.1",
"description": "Simple WebSocket API for Blitzortung.de",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"dependencies": {
"ws": "^7.3.1"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/node": "^10.17.28",
"@types/ws": "^7.2.6",
"rimraf": "^3.0.2",
"standard-version": "^8.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc",
"example": "ts-node example.ts",
"prep-release": "standard-version",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimonSchick/BlitzortungAPI.git"
},
"keywords": [
"lightning",
"weather",
"api",
"websocket",
"blitzortung"
],
"author": "Simon Schick",
"license": "MIT",
"bugs": {
"url": "https://github.com/SimonSchick/BlitzortungAPI/issues"
},
"homepage": "https://github.com/SimonSchick/BlitzortungAPI#readme"
}