-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 3.85 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "@inp-net/ldap7",
"author": {
"email": "contact@net7.dev",
"name": "net7 / INP-net members",
"url": "https://net7.dev"
},
"contributors": [
{
"name": "LeGmask",
"email": "dreumonte@bde.enseeiht.fr",
"url": "https://github.com/LeGmask"
}
],
"packageManager": "yarn@4.5.0",
"version": "1.0.12",
"description": "ldapts wrapper",
"module": "build/module/client.js",
"homepage": "https://git.inpt.fr/inp-net/ldap7",
"bugs": {
"url": "https://git.inpt.fr/inp-net/ldap7/-/issues"
},
"repository": {
"type": "git",
"url": "git+https://git.inpt.fr/inp-net/ldap7"
},
"type": "module",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "tsc -p tsconfig.json",
"fix": "run-s \"fix:*\"",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "run-s build \"test:*\"",
"test:lint": "eslint src",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:unit": "nyc --silent ava",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "nyc --silent ava --watch",
"cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
"cov:html": "nyc report --reporter=html",
"cov:lcov": "nyc report --reporter=lcov",
"cov:send": "run-s cov:lcov && codecov",
"cov:check": "nyc report && nyc check-coverage --lines 50 --functions 50 --branches 50",
"version": "standard-version",
"reset-hard": "git clean -dfx && git reset --hard && yarn",
"prepare-release": "run-s reset-hard test cov:check version",
"release": "run-s prepare-release && git push --follow-tags origin master && npm publish --access=public"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"latinize": "^2.0.0",
"ldapts": "^7.2.0",
"tslog": "^4.9.3",
"unixcrypt": "^2.0.0"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/latinize": "^0.2.18",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"ava": "^6.1.3",
"codecov": "^3.8.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.30.0",
"npm-run-all2": "^6.2.3",
"nyc": "^17.0.0",
"open-cli": "^8.0.0",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"files": [
"build/",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"ava": {
"failFast": true,
"timeout": "60s",
"typescript": {
"rewritePaths": {
"src/": "build/"
},
"compile": false
},
"files": [
"!build/main/**"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
},
"exports": {
".": {
"import": {
"default": "./build/client.js",
"types": "./build/client.d.ts"
}
},
"./user": {
"import": {
"default": "./build/lib/ou=people/user.js",
"types": "./build/lib/ou=people/user.d.ts"
}
},
"./school": {
"import": {
"default": "./build/lib/ou=schools/school.js",
"types": "./build/lib/ou=schools/school.d.ts"
}
},
"./group": {
"import": {
"default": "./build/lib/ou=schools/ou=groups/group.js",
"types": "./build/lib/ou=schools/ou=groups/group.d.ts"
}
}
}
}