-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 814 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 814 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
{
"name": "node-snap7",
"main": "./lib/node-snap7.js",
"version": "1.0.9",
"description": "Native node.js addon/wrapper for snap7",
"homepage": "https://github.com/mathiask88/node-snap7",
"repository": {
"type": "git",
"url": "git://github.com/mathiask88/node-snap7.git"
},
"keywords": [
"snap7",
"sps",
"S7",
"PLC"
],
"author": {
"name": "Mathias Küsel"
},
"engines": {
"node": "16 || 18 || 20 || 22 || 24"
},
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"nan": "^2.23.0",
"bindings": "^1.5.0",
"prebuild-install": "^7.1.2"
},
"devDependencies": {
"prebuild": "^13.0.1",
"prebuild-ci": "^4.0.0"
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"test": "prebuild-ci"
}
}