node-ldapjs/package.json

60 lines
1.6 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",
2021-05-27 19:23:01 +00:00
"version": "2.3.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": {
"abstract-logging": "^2.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": {
2021-02-24 22:06:13 +00:00
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
2021-02-24 22:06:13 +00:00
"eslint-plugin-promise": "^4.3.1",
2020-12-13 08:06:45 +00:00
"front-matter": "^4.0.2",
"get-port": "^5.1.1",
2021-02-24 22:06:13 +00:00
"highlight.js": "^10.6.0",
"husky": "^4.2.5",
"marked": "^2.0.0",
"tap": "15.0.9"
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",
2020-12-06 17:08:59 +00:00
"lint": "eslint . --fix",
2020-12-13 08:06:45 +00:00
"lint:ci": "eslint .",
2020-12-13 16:58:24 +00:00
"docs": "node scripts/build-docs.js"
},
"husky": {
"hooks": {
2020-12-06 17:08:59 +00:00
"pre-commit": "npm run lint:ci && npm run test"
}
2011-08-04 20:32:01 +00:00
}
}