-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.13 KB
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
{
"name": "@balmanth/rinha-compiler",
"description": "A small compiler and interpreter for the Rinha language contest",
"private": true,
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.js",
"author": {
"name": "Silas B. Domingos",
"url": "https://github.com/balmanth"
},
"repository": {
"type": "git",
"url": "git@github.com-balmanth:balmanth/rinha-compiler.git"
},
"scripts": {
"parser:make": "xcm -s ./xcheme/parser.xcm -t ./src/rinha.js",
"parser:test": "xcm --run --tokens --nodes --symbols -s ./xcheme/parser.xcm -t ./tests/syntax.rinha",
"test": "jest --runInBand --config=./jest.config.js",
"watch": "webpack --watch",
"build": "webpack --mode production --devtool hidden-source-map",
"clean": "tsc --build --clean ./tsconfig.json"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@xcheme/cli": "^0.0.14",
"@xcheme/core": "^0.0.14",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-shebang-plugin": "^1.1.8"
}
}