-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.26 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
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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@jest/globals": "29.7.0",
"@tsconfig/node-lts": "20.1.3",
"@types/debug": "4.1.12",
"@types/node": "22.8.1",
"@typescript-eslint/parser": "8.11.0",
"esbuild": "0.24.0",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"jest-sonar": "0.2.16",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typedoc": "0.26.10",
"typescript": "5.6.3"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"async": "^3.2.6",
"debug": "^4.3.7",
"tiny-typed-emitter": "2.1.0"
},
"packageManager": "[email protected]+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
}