-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
43
44
45
46
47
48
{
"name": "codesys-client",
"version": "0.1.1",
"description": "Node.js Codesys client for reading and writing PLC data using network variable lists (NVL)",
"main": "./dist/codesys-client.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "eslint . --ext .ts",
"watch": "tsc -w"
},
"keywords": [
"plc",
"iec-61131-3",
"61131-3",
"codesys"
],
"author": "Jussi Isotalo <[email protected]> (https://github.com/jisotalo)",
"license": "MIT",
"homepage": "https://github.com/jisotalo/codesys-client/",
"bugs": {
"url": "https://github.com/jisotalo/codesys-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jisotalo/codesys-client.git"
},
"dependencies": {
"debug": "^4.3.2",
"iec-61131-3": "^1.1.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.17.0",
"typescript": "^4.1.3"
},
"files": [
"dist/",
"CHANGELOG.md",
"README.md",
"LICENSE.txt",
"nvl-file-generator.html"
],
"types": "./dist/codesys-client.d.ts"
}