-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.39 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
{
"license": "MIT",
"version": "1.0.14",
"name": "node-logix",
"description": "Nodejs EtherNet/IP to handle PLC as Micro820, Logix...",
"author": "Michael Vargas",
"module": "./build/es6/src/index.js",
"main": "./build/commonjs/src/index.js",
"typings": "./typings/src/index.d.ts",
"scripts": {
"prettier": "prettier --write src/**/*.js examples/*.js src/**/*.ts",
"publish:npm": "npm publish --access public",
"build": "yarn tsc&&yarn tsc-es6",
"tsc-es6": "tsc --p tsconfig.es6.json",
"tsc": "tsc",
"clean": "RMDIR /Q/S build",
"docs": "typedoc --out docs ./src --mode file --includeDeclarations --excludeExternals --module commonjs --target ES6 --tsconfig tsconfig.es6.json"
},
"dependencies": {
"bluebird": "^3.5.5",
"generic-pool": "^3.7.1",
"python-struct": "^1.1.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/generic-pool": "^3.1.9",
"@types/node": "^12.7.8",
"@types/python-struct": "^1.0.0",
"prettier": "^1.18.2",
"typedoc": "^0.15.0",
"typescript": "^3.6.3"
},
"repository": "https://github.com/punisher97/node-logix.git",
"keywords": [
"Allen Bradley",
"Node.js Allen-Bradley",
"Node.js PLC",
"Control-Logix",
"ethernet-ip",
"EtherNet/IP",
"Micro800",
"Micro820",
"Micro850",
"Logix PLC",
"CIP Protocol",
"pylogix"
],
"readme": "README.md"
}