-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
executable file
·42 lines (42 loc) · 1.22 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
{
"name": "node-screenlogic",
"description": "Tool for connecting to Pentair ScreenLogic systems on the local network",
"version": "2.1.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": "https://github.com/parnic/node-screenlogic.git",
"keywords": [
"pentair",
"pool",
"screenlogic",
"swimmingpool"
],
"dependencies": {
"debug": "^4.3.2",
"smart-buffer": "^4.2.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^16.18.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-strongloop": "^2.1.0",
"mocha": "^9.1.2",
"typescript": "^4.9.5"
},
"scripts": {
"test": "mocha test/*.spec.js",
"pretest": "eslint . ",
"test-slmessage": "mocha test/slmessage.spec.js",
"test-passwordencoder": "mocha test/password.spec.js",
"build": "tsc",
"lint": "eslint --fix --ext .js,.jsx,.ts ."
},
"engines": {
"npm": ">=6.0.0",
"node": ">=14.0.0"
}
}