-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.02 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
{
"name": "lexdoc",
"version": "2.0.3",
"description": "Simplified token definition and lexer creation library for use with Chevrotain.",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"directories": {
"lib": "./lib",
"example": "./example",
"test": "./spec"
},
"scripts": {
"test": "bin/jasmine"
},
"keywords": [
"lexer",
"lexer-generator",
"parser",
"tokenizer",
"chevrotain"
],
"author": {
"name": "0E9B061F",
"email": "0E9B061F@protonmail.com",
"url": "https://github.com/0E9B061F"
},
"repository": "github:0E9B061F/lexdoc",
"bugs": {
"url": "https://github.com/0E9B061F/lexdoc/issues",
"email": "0E9B061F@protonmail.com"
},
"homepage": "https://github.com/0E9B061F/lexdoc",
"engines": {
"npm": ">=8.9.4"
},
"license": "MIT",
"dependencies": {
"xregexp": "^5.1.1"
},
"peerDependencies": {
"chevrotain": "~10"
},
"devDependencies": {
"jasmine": "^5.3.1",
"jasmine-console-reporter": "^3.1.0"
}
}