-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.26 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.26 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "nut-client",
"version": "0.0.9",
"main": "./lib/index.cjs",
"description": "A NUT (Network UPS Tools) Client",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"type": "module",
"sideEffects": false,
"files": [
"lib"
],
"scripts": {
"start": "npm run build && node --enable-source-maps lib/index.mjs",
"ts-types": "tsc -p tsconfig.build.json --emitDeclarationOnly --outDir lib/types",
"build": "tsc --noEmit && rimraf lib && node esbuild.mjs && npm run ts-types",
"jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles",
"test:ci": "npm run jest -- --ci",
"test:ci:coverage": "npm run jest -- --ci --coverage",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"ci:eslint": "npm run lint -- -f json -o ./coverage/eslint-report.json",
"generate:documentation": "typedoc"
},
"repository": {
"type": "git",
"url": "https://github.com/thib3113/nut.git"
},
"bugs": {
"url": "https://github.com/thib3113/nut/issues"
},
"keywords": [
"NUT",
"ups",
"power"
],
"typings": "./lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
},
"default": "./lib/index.cjs"
}
},
"author": "Thibaut SEVERAC <thib3113@gmail.com>",
"license": "MIT",
"devDependencies": {
"@jest/globals": "30.2.0",
"@tsconfig/node-lts": "24.0.0",
"@types/debug": "4.1.12",
"@types/node": "25.2.2",
"@typescript-eslint/parser": "8.53.1",
"esbuild": "0.27.3",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.2.0",
"jest-sonar": "0.2.16",
"prettier": "3.8.1",
"rimraf": "6.1.2",
"ts-jest": "29.4.6",
"typedoc": "0.28.16",
"typescript": "5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"async": "^3.2.6",
"debug": "^4.4.3",
"tiny-typed-emitter": "2.1.0"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}