-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 KB
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
{
"name": "@csquare/ldapjs-client",
"version": "0.2.0",
"description": "Promisified wrapper around the ldapjs client.",
"keywords": [
"ldap",
"ldapjs",
"client"
],
"homepage": "https://github.com/csquare-ai/ldapjs-client",
"bugs": {
"url": "https://github.com/csquare-ai/ldapjs-client/issues",
"email": "mathieu@csquare.ai"
},
"license": "MIT",
"author": "Mathieu Bour <mathieu@csquare.ai> (https://github.com/mathieu-bour)",
"contributors": [],
"files": [
"dist/**"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"repository": "github:csquare-ai/ldapjs-client",
"scripts": {
"clean": "rimraf dist",
"prepare": "npx is-ci || husky install",
"format": "prettier --write **/*.{ts,tsx,json,yaml,yml,md}",
"format:check": "prettier --check **/*.{ts,tsx,yaml,yml,md}",
"build": "run-p build:*",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@types/ldapjs": "^1.0.10",
"ldapjs": "^2.2.4"
},
"devDependencies": {
"@csquare/prettier-config": "^1.1.2",
"@types/node": "^14.14.41",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"standard-commit": "^4.2.4",
"typescript": "^4.2.4"
},
"prettier": "@csquare/prettier-config"
}