-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "ads-server",
"version": "1.1.2",
"description": "TwinCAT ADS server for Node.js (unofficial). Listens for incoming ADS protocol commands and responds.",
"main": "./dist/ads-server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint . --ext .ts"
},
"keywords": [
"ADS",
"twincat",
"beckhoff",
"plc",
"iec-61131-3",
"61131-3",
"twincat 2",
"twincat 2.11",
"twincat 3",
"twincat 3.1",
"twincat ads",
"codesys",
"client",
"server"
],
"author": "Jussi Isotalo <j.isotalo91@gmail.com> (https://github.com/jisotalo)",
"license": "MIT",
"homepage": "https://github.com/jisotalo/ads-server/",
"bugs": {
"url": "https://github.com/jisotalo/ads-server/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jisotalo/ads-server.git"
},
"dependencies": {
"debug": "^4.1.1",
"iconv-lite": "^0.5.1",
"long": "^4.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/long": "^4.0.1",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"docdash": "^1.2.0",
"eslint": "^7.17.0",
"jsdoc": "^3.6.4",
"typescript": "^4.1.3"
},
"files": [
"dist/",
"CHANGELOG.md",
"README.md"
],
"types": "./dist/ads-server.d.ts"
}