forked from st-one-io/nodes7
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 941 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 941 Bytes
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": "@st-one-io/nodes7",
"description": "A javascript library to communicate with Siemens S7 PLCs",
"version": "1.0.1",
"author": "Guilherme Francescon <guilherme@st-one.io>",
"keywords": [
"S7",
"Siemens",
"PLC",
"RFC1006",
"iso-on-tcp",
"mpi",
"s7-200",
"s7-300",
"s7-400",
"s7-1200",
"s7-1500",
"profinet"
],
"repository": {
"type": "git",
"url": "https://github.com/st-one-io/nodes7"
},
"main": "src/index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text --reporter=text-summary mocha --timeout=3000 test/**/**.spec.js",
"doc": "jsdoc2md --files src/**.js > doc/API.md"
},
"engine": {
"node": ">= 10.0.0"
},
"license": "GPL-3.0-or-later",
"devDependencies": {
"chai": "^4.2.0",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0"
},
"dependencies": {
"iso-on-tcp": "^0.1.0"
}
}