forked from ldapjs/node-ldapjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.43 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
{
"originalAuthor": "Mark Cavage <mcavage@gmail.com>",
"name": "@wekanteam/ldapjs",
"homepage": "http://ldapjs.org",
"description": "LDAP client and server APIs",
"version": "3.0.8",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/wekan/node-ldapjs.git"
},
"main": "lib/index.js",
"dependencies": {
"@wekanteam/asn1": "github:wekan/asn1",
"@wekanteam/attribute": "github:wekan/attribute",
"@wekanteam/change": "github:wekan/change",
"@wekanteam/controls": "github:wekan/controls",
"@wekanteam/dn": "github:wekan/dn",
"@wekanteam/filter": "github:wekan/filter",
"@wekanteam/messages": "github:wekan/messages",
"@wekanteam/protocol": "github:wekan/protocol",
"abstract-logging": "^2.0.1",
"assert-plus": "^1.0.0",
"backoff": "^2.5.0",
"once": "^1.4.0",
"vasync": "^2.2.1",
"verror": "^1.10.1"
},
"scripts": {
"test": "tap --no-cov -R terse",
"test:ci": "tap --coverage-report=lcovonly -R terse",
"test:cov": "tap -R terse",
"test:cov:html": "tap --coverage-report=html -R terse",
"test:watch": "tap -n -w --no-coverage-report -R terse",
"test:integration": "tap --no-cov -R terse 'test-integration/**/*.test.js'",
"test:integration:local": "docker-compose up -d --wait && npm run test:integration ; docker-compose down",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"docs": "node scripts/build-docs.js"
}
}