45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@ldapjs/messages",
|
|
"homepage": "https://github.com/ldapjs/messages",
|
|
"description": "API for creating and parsing LDAP messages",
|
|
"version": "1.3.0",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:ldapjs/messages.git"
|
|
},
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"@ldapjs/asn1": "^2.0.0",
|
|
"@ldapjs/attribute": "^1.0.0",
|
|
"@ldapjs/change": "^1.0.0",
|
|
"@ldapjs/controls": "^2.1.0",
|
|
"@ldapjs/dn": "^1.1.0",
|
|
"@ldapjs/filter": "^2.1.1",
|
|
"@ldapjs/protocol": "^1.2.1",
|
|
"process-warning": "^2.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@fastify/pre-commit": "^2.0.2",
|
|
"eslint": "^8.47.0",
|
|
"eslint-config-standard": "^17.0.0",
|
|
"eslint-plugin-import": "^2.28.0",
|
|
"eslint-plugin-n": "^16.0.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"tap": "^16.3.8"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint:ci": "eslint .",
|
|
"test": "tap --no-coverage-report",
|
|
"test:cov": "tap",
|
|
"test:cov:html": "tap --coverage-report=html",
|
|
"test:watch": "tap -w --no-coverage-report"
|
|
},
|
|
"precommit": [
|
|
"lint",
|
|
"test"
|
|
]
|
|
}
|