-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "node-red-contrib-activedirectory",
"version": "0.3.2",
"description": "Node-RED node collection for Microsoft Active Directory.",
"main": "index.js",
"scripts": {
"test": "standard --verbose && mocha \"test/**/*_spec.js\"",
"validate": "node-red-dev validate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoeSamaille/node-red-contrib-activedirectory.git"
},
"keywords": [
"node-red",
"node",
"ad",
"active",
"directory",
"ldap"
],
"author": "Noe Samaille",
"license": "ISC",
"bugs": {
"url": "https://github.com/NoeSamaille/node-red-contrib-activedirectory/issues"
},
"homepage": "https://github.com/NoeSamaille/node-red-contrib-activedirectory#readme",
"node-red": {
"version": ">=1.3.0",
"nodes": {
"find-user": "./nodes/find-user.js",
"find-group": "./nodes/find-group.js",
"query": "./nodes/query.js",
"ad-config": "./nodes/config.js"
}
},
"engines": {
"node": ">=8"
},
"dependencies": {
"activedirectory2": "^2.1.0"
},
"devDependencies": {
"mocha": "^9.2.0",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.0",
"node-red-dev": "^0.1.5",
"standard": "^16.0.4"
},
"standard": {
"ignore": [
"test/*_spec.js"
]
}
}