@the-software-compagny/parser_ldap_rfc4512 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. package/LICENSE +29 -0
  2. package/README.md +149 -0
  3. package/cli.js +13107 -0
  4. package/index.js +8089 -0
  5. package/package.json +48 -0
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@the-software-compagny/parser_ldap_rfc4512",
3
+ "version": "0.1.0",
4
+ "description": "A TypeScript parser for LDAP schema definitions based on RFC 4512, using PEG.js grammar",
5
+ "repository": "https://github.com/The-Software-Compagny/parser_ldap_rfc4512.git",
6
+ "author": "tacxou <12997062+tacxou@users.noreply.github.com> (https://github.com/tacxou)",
7
+ "contributors": [
8
+ {
9
+ "name": " tacxou",
10
+ "email": "12997062+tacxou@users.noreply.github.com",
11
+ "url": "https://github.com/tacxou"
12
+ },
13
+ {
14
+ "name": "Contributors",
15
+ "url": "https://github.com/The-Software-Compagny/parser_ldap_rfc4512/graphs/contributors"
16
+ }
17
+ ],
18
+ "license": "BSD-3-Clause",
19
+ "main": "dist/index.js",
20
+ "bin": {
21
+ "rfc4512-parser": "dist/cli.js"
22
+ },
23
+ "scripts": {
24
+ "prebuild": "rimraf dist",
25
+ "build": "bun build ./src/index.ts --outdir ./dist --target node --splitting && bun build ./src/cli.ts --outdir ./dist --target node",
26
+ "postbuild": "cpr README.md dist/README.md && cpr LICENSE dist/LICENSE && cpr package.json dist/package.json",
27
+ "test": "bun test",
28
+ "test:watch": "bun test --watch",
29
+ "test:cli": "bun test test/cli.test.ts",
30
+ "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
31
+ "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\""
32
+ },
33
+ "devDependencies": {
34
+ "@types/bun": "latest",
35
+ "@types/yargs": "^17.0.33",
36
+ "@typescript-eslint/eslint-plugin": "^8.38.0",
37
+ "@typescript-eslint/parser": "^8.38.0",
38
+ "cpr": "^3.0.1",
39
+ "eslint": "^9.32.0",
40
+ "peggy": "^5.0.5",
41
+ "prettier": "^3.6.2",
42
+ "rimraf": "^6.0.1",
43
+ "yargs": "^17.7.2"
44
+ },
45
+ "peerDependencies": {
46
+ "typescript": "^5.0.0"
47
+ }
48
+ }