-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@opendxl/node-red-contrib-dxl-pxgrid-client",
"version": "0.1.1",
"author": "McAfee, LLC",
"description": "Cisco pxGrid DXL nodes for Node-RED",
"license": "Apache-2.0",
"keywords": [
"opendxl",
"dxl",
"mcafee",
"node-red",
"client",
"cisco",
"pxgrid"
],
"files": [
"lib",
"nodes",
"examples",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@opendxl/node-red-contrib-dxl": "^0.1.0",
"@opendxl/dxl-bootstrap": "^0.1.0",
"@opendxl/dxl-client": "^0.0.1"
},
"devDependencies": {
"archiver": "^2.1.1",
"jsdoc": "^3.5.5",
"jshint": "^2.9.5",
"eslint-plugin-html": "^3.2.2",
"mocha": "^4.1.0",
"node-red": "^0.20.8",
"node-red-node-test-helper": "^0.2.3",
"rimraf": "^2.6.2",
"should": "^13.2.1",
"standard": "^10.0.3",
"snazzy": "^7.0.0"
},
"eslintConfig": {},
"repository": {
"type": "git",
"url": "git://github.com/opendxl/node-red-contrib-dxl-pxgrid-client.git"
},
"node-red": {
"nodes": {
"dxl-ise-anc-apply-endpoint-policy-by-ip": "./nodes/dxl-ise-anc-apply-endpoint-policy-by-ip.js",
"dxl-ise-anc-apply-endpoint-policy-by-mac": "./nodes/dxl-ise-anc-apply-endpoint-policy-by-mac.js",
"dxl-ise-anc-apply-endpoint-policy-in": "./nodes/dxl-ise-anc-apply-endpoint-policy-in.js",
"dxl-ise-anc-clear-endpoint-policy-by-ip": "./nodes/dxl-ise-anc-clear-endpoint-policy-by-ip.js",
"dxl-ise-anc-clear-endpoint-policy-by-mac": "./nodes/dxl-ise-anc-clear-endpoint-policy-by-mac.js",
"dxl-ise-anc-clear-endpoint-policy-in": "./nodes/dxl-ise-anc-clear-endpoint-policy-in.js",
"dxl-ise-identity-session-in": "./nodes/dxl-ise-identity-session-in.js"
}
},
"scripts": {
"predist": "npm install && rimraf *.tgz",
"dist": "npm pack && npm run doc && node scripts/dist.js",
"test": "mocha --recursive",
"lint": "npm run lint:jshint && npm run lint:standard",
"lint:jshint": "jshint lib nodes test",
"lint:standard": "standard \"**/*.html\" \"**/*.js\" | snazzy",
"preci": "npm run lint",
"ci": "npm run test",
"doc": "jsdoc -c ./doc/conf.json doc/index.md -r lib/ nodes/ -u doc/sdk -d out/jsdoc",
"postdoc": "node scripts/postdoc.js"
},
"standard": {
"env": [
"mocha"
],
"globals": [
"RED",
"$"
],
"plugins": [
"html"
]
}
}