-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "s7client",
"version": "1.1.0",
"description": "Hi level API for node-snap7 to communication with Siemens S7 PLCs",
"homepage": "https://psi-4ward.github.io/s7client",
"main": "src/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"docs": "docma -c docma.config.json",
"deploy:docs": "npm run docs && git-directory-deploy --directory docs --branch gh-pages",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text --report-dir .nyc_output mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psi-4ward/s7client.git"
},
"keywords": [
"snap7",
"node-snap7",
"siemens",
"sps",
"S7",
"plc",
"logo"
],
"author": {
"name": "Christoph Wiechert",
"url": "https://psi.cx"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/psi-4ward/s7client/issues"
},
"engines": {
"node": ">=7.6"
},
"dependencies": {
"debug": "^4.2.0",
"lodash.random": "^3.2.0",
"node-snap7": "^1.0.4"
},
"devDependencies": {
"chai": "^4.2.0",
"docma": "^3.2.2",
"git-directory-deploy": "^1.5.1",
"mocha": "^8.2.0",
"nyc": "^15.1.0"
}
}