forked from st-one-io/node-open-protocol
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.18 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
52
53
54
55
56
57
{
"name": "@redviking/node-open-protocol",
"version": "1.2.0",
"description": "A library to interface with Power Tools using the Atlas Copco Open Protocol (RedViking fork)",
"main": "index.js",
"directories": {
"doc": "doc"
},
"scripts": {
"build": "tsc",
"test": "nyc --reporter=html --reporter=text --reporter=text-summary mocha --timeout=3000 test/**/**.spec.js",
"doc": "jsdoc -d docs/jsdoc/ -r -R README.md src/",
"prepack": "tsc"
},
"typesVersions": {
"*": {
"typings/*": [
"typings/*"
],
"*": [
"typings/*"
]
}
},
"files": [
"src",
"typings"
],
"repository": {
"type": "git",
"url": "https://github.com/netsmarttech/node-open-protocol"
},
"keywords": [
"hardware",
"ethernet",
"industrial",
"communication",
"controller",
"atlas-copco",
"power-focus",
"power-macs",
"stanley",
"desoutter",
"cleco",
"estic"
],
"author": "SmartTech",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/node": "^16",
"chai": "^4.2.0",
"jsdoc": "^3.6.6",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"typescript": "^4.7.2"
}
}