-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.04 KB
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.04 KB
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
{
"name": "glesys-api",
"version": "9.2.0",
"description": "Node.js wrapper for the GleSYS API.",
"type": "module",
"main": "./lib/glesys.js",
"exports": "./lib/glesys.js",
"author": "Jonathan Wilsson <jonathan.wilsson@gmail.com>",
"contributors": [
"Oskar Risberg <kokarn@gmail.com>"
],
"engines": {
"node": ">=22.11.0"
},
"keywords": [
"glesys"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/jwilsson/glesys-api-node"
},
"dependencies": {
"got": "^14.4.3"
},
"devDependencies": {
"@jwilsson/eslint-config": "^9.0.0",
"@jwilsson/prettier-config": "^9.0.0",
"@vitest/coverage-v8": "^3.1.1",
"coveralls": "^3.0.0",
"eslint": "^9.10.0",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.2.0",
"vitest": "^3.1.1"
},
"scripts": {
"pretest": "eslint lib test",
"test": "vitest --run"
},
"license": "MIT"
}