-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.1 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.1 KB
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
{
"name": "@tier0/node-dcom",
"version": "1.2.1",
"description": "An implementation of the DCOM Protocol for node.js, with NTLMv2 and packet signing (fork of node-dcom, OPC DA friendly)",
"main": "dcom/index.js",
"files": [
"dcom/**/*.js",
"LICENSE",
"README.md"
],
"scripts": {
"test": "node -e \"require('./dcom/index.js'); console.log('load ok');\"",
"prepack": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/tier0/node-dcom.git"
},
"keywords": [
"dcom",
"com",
"opc",
"opc-da",
"ntlm",
"ntlmv2",
"rpc"
],
"author": "Igor Steuck Lopes (original); Tier0 maintainers",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"dependencies": {
"bytebuffer": "^5.0.1",
"hashcode": "^1.0.3",
"hashmap": "^2.3.0",
"ip": "^1.1.5",
"js-md4": "^0.3.2",
"legacy-encoding": "^3.0.0",
"object-hash": "^1.3.1"
},
"devDependencies": {
"@types/node": "^12.6.3",
"eslint": "^6.0.1",
"eslint-config-google": "^0.13.0"
},
"engines": {
"node": ">=12"
}
}