forked from ldapts/ldapts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "ldapts",
"version": "1.8.0",
"description": "LDAP client",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register tests/*.tests.ts tests/**/*.tests.ts",
"lint": "tslint --fix -p tsconfig.lint.json -c tslint.json -t stylish",
"prepublishOnly": "if [ -d \"src\" ]; then rm -rf dist && npm run lint && npm run build && npm run test && cp package.json dist && cp *.md dist && cp .npmignore dist && cd dist && npm publish && echo \"Successfully published! Ignore the following error...\" && exit 125; fi"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ldapts/ldapts.git"
},
"engines": {
"node": ">=8.11"
},
"keywords": [
"ldap",
"active",
"directory"
],
"author": "jim@biacreations.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/ldapts/ldapts/issues"
},
"homepage": "https://github.com/ldapts/ldapts#readme",
"dependencies": {
"@types/asn1": "~0.2.0",
"@types/node": "~8.10.48",
"asn1": "~0.2.4",
"debug": "~4.1.1",
"strict-event-emitter-types": "~2.0.0"
},
"devDependencies": {
"@types/chai": "~4.1.7",
"@types/chai-as-promised": "~7.1.0",
"@types/debug": "~4.1.4",
"@types/mocha": "~5.2.6",
"chai": "~4.2.0",
"chai-as-promised": "~7.1.1",
"husky": "~2.4.0",
"mocha": "~6.1.4",
"ts-mockito": "~2.3.1",
"ts-node": "~8.2.0",
"tslint": "~5.17.0",
"tslint-config-airbnb": "~5.11.1",
"typescript": "~3.5.1"
}
}