-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.36 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
{
"name": "@ull-esit-pl/lexer-generator-solution",
"version": "4.2.2",
"description": "A package that can generate basic lexical analyzers",
"main": "src/main.js",
"scripts": {
"test": "jest --coverage",
"doc": "documentation build src/main.js -f md -o docs/README.md",
"nearley": "nearleyc test/test-grammar.ne -o test/test-grammar.js",
"test-nearley": "npm run nearley && node test/check-nearley.js",
"egg": "nearleyc test/egg/egg.ne -o test/egg/grammar.js",
"test-egg": "node test/egg/eggc.js test/egg/array.egg; evm test/egg/array.json"
},
"repository": {
"type": "git",
"url": "[email protected]:ULL-ESIT-PL/lexer-generator-solution.git"
},
"keywords": [
"ULL",
"PL",
"Lexer"
],
"author": "Casiano Rodriguez Leon <[email protected]> (https://github.com/casiano-rodriguez-leon)",
"license": "Unlicense",
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"bugs": {
"url": "https://github.com/ULL-ESIT-PL/lexer-generator-solution/issues"
},
"homepage": "https://github.com/ULL-ESIT-PL/lexer-generator-solution#readme",
"devDependencies": {
"@crguezl/eloquentjsegg": "^1.2.6",
"@types/jest": "^26.0.22",
"documentation": "^13.2.0",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"jest": "^26.6.3",
"nearley": "^2.20.1"
}
}