node-ldapjs/package.json

54 lines
1.3 KiB
JSON
Raw Normal View History

2011-08-04 20:32:01 +00:00
{
2019-08-27 21:22:26 +00:00
"originalAuthor": "Mark Cavage <mcavage@gmail.com>",
2011-08-04 20:32:01 +00:00
"name": "ldapjs",
2011-08-08 15:14:13 +00:00
"homepage": "http://ldapjs.org",
2011-08-04 20:32:01 +00:00
"description": "LDAP client and server APIs",
2020-07-21 21:54:12 +00:00
"version": "2.1.0",
2015-06-15 01:55:51 +00:00
"license": "MIT",
2011-08-04 20:32:01 +00:00
"repository": {
"type": "git",
2019-08-27 21:22:26 +00:00
"url": "git://github.com/ldapjs/node-ldapjs.git"
2011-08-04 20:32:01 +00:00
},
"main": "lib/index.js",
2011-10-18 23:26:38 +00:00
"directories": {
"lib": "./lib"
},
2011-08-04 20:32:01 +00:00
"engines": {
"node": ">=10.13.0"
2011-08-04 20:32:01 +00:00
},
"dependencies": {
2016-11-03 17:59:40 +00:00
"abstract-logging": "^1.0.0",
2019-08-27 13:15:48 +00:00
"asn1": "^0.2.4",
2016-10-19 03:25:14 +00:00
"assert-plus": "^1.0.0",
"backoff": "^2.5.0",
2019-08-27 13:08:00 +00:00
"ldap-filter": "^0.3.3",
2016-10-19 03:25:14 +00:00
"once": "^1.4.0",
2019-08-27 13:15:48 +00:00
"vasync": "^2.2.0",
2016-10-19 03:25:14 +00:00
"verror": "^1.8.1"
2011-08-08 15:14:13 +00:00
},
2011-08-04 20:32:01 +00:00
"devDependencies": {
"get-port": "^5.1.1",
"husky": "^3.0.4",
"snazzy": "^8.0.0",
"standard": "^14.0.2",
2019-12-07 15:01:03 +00:00
"tap": "14.10.1",
"uuid": "^3.3.3"
2011-08-04 20:32:01 +00:00
},
"scripts": {
"test": "tap --no-cov",
"test:ci": "tap --coverage-report=lcovonly",
"test:cov": "tap",
"test:cov:html": "tap --coverage-report=html",
"test:watch": "tap -n -w --no-coverage-report",
"test:integration": "tap --no-cov 'test-integration/**/*.test.js'",
"test:integration:local": "docker-compose up -d && npm run test:integration && docker-compose down",
"lint": "standard | snazzy",
"lint:ci": "standard"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
2011-08-04 20:32:01 +00:00
}
}