-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.92 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
{
"name": "@honungsburk/kombo",
"version": "3.0.1",
"description": "Are you tired of complex regex? Do you want good error messages? Use kombo!",
"author": "Frank Hampus Weslien (https://honungsburk.github.io/)",
"license": "BSD-3-Clause",
"homepage": "https://honungsburk.github.io/kombo/",
"repository": {
"type": "git",
"url": "git+https://github.com/honungsburk/kombo.git"
},
"bugs": {
"url": "https://github.com/honungsburk/kombo/issues"
},
"files": [
"dist/",
"README.md",
"semantics.md",
"comparison.md",
"package.json",
"package-lock.json",
"LICENCE",
"ORIGINAL-ELM-LICENCE"
],
"type": "module",
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig.build.esm.json && tsc -p tsconfig.build.cjs.json && ./fixup.bash",
"test": "ts-node-esm bin/Test.ts",
"typedoc": "typedoc src/index.ts"
},
"keywords": [
"parser",
"parser combinators",
"typescript",
"kombo"
],
"devDependencies": {
"@japa/expect": "^2.0.2",
"@japa/runner": "^2.5.1",
"@japa/spec-reporter": "^1.3.3",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"dependencies": {
"immutable": "^4.3.1",
"tslib": "^2.6.0"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
},
"./Advanced": {
"import": "./dist/mjs/Advanced.js",
"require": "./dist/cjs/Advanced.js"
},
"./Simple": {
"import": "./dist/mjs/Simple.js",
"require": "./dist/cjs/Simple.js"
},
"./Helpers": {
"import": "./dist/mjs/Helpers.js",
"require": "./dist/cjs/Helpers.js"
},
"./Result": {
"import": "./dist/mjs/Result.js",
"require": "./dist/cjs/Result.js"
},
"./Parser": {
"import": "./dist/mjs/Parser.js",
"require": "./dist/cjs/Parser.js"
}
}
}