forked from zont/ldapjs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 850 Bytes
/
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
{
"author": "Alexander Zonov",
"name": "ldapjs-client",
"description": "LDAP js client",
"keywords": [
"LDAP",
"ldap",
"client",
"simple",
"promised",
"async"
],
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/zont/ldapjs-client.git"
},
"main": "src/index.js",
"scripts": {
"lint": "eslint --fix src/**/* __tests__/**/*",
"test": "jest --forceExit"
},
"dependencies": {
"asn1": "0.2.3",
"assert-plus": "^1.0.0",
"ldap-filter": "0.2.2"
},
"devDependencies": {
"eslint": "4.18.1",
"jest": "22.4.2"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": [
"text-summary",
"html"
]
},
"engines": {
"node": ">=8.0"
}
}