-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.48 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
{
"name": "@bosque/core",
"type": "module",
"description": "Bosque programming language and tooling stack (Core).",
"author": {
"name": "Mark Marron <marron@cs.uky.edu>"
},
"license": "MIT",
"version": "1.0.0-dev",
"repository": {
"type": "git",
"url": "https://github.com/BosqueLanguage/BosqueCore"
},
"dependencies": {
"@types/node": "22.7.1",
"@bosque/jsbrex": "0.11.0"
},
"devDependencies": {
"typescript": "5.6.2"
},
"scripts": {
"build": "node ./build/build_all.js",
"test": "node ./build/build_all.js && node --test-concurrency=8 --test test/*/*/*.test.js",
"test-coverage": "node ./build/build_all.js && node --test-concurrency=4 --experimental-test-coverage --test-coverage-exclude=test/** --test-coverage-exclude=/tmp/** --test test/*/*/*.test.js",
"test-parser": "node ./build/build_all.js && node --test-concurrency=8 --test ./test/parser/*/*.test.js",
"test-typecheck": "node ./build/build_all.js && node --test-concurrency=8 --test ./test/typecheck/*/*.test.js",
"test-runtime": "node ./build/build_all.js && node --test-concurrency=8 --test ./test/runtime/*/*.test.js",
"test-stdlib": "node ./build/build_all.js && node --test-concurrency=8 --test ./test/stdlib/*/*.test.js"
},
"files": [
"bin/*"
],
"bin": {
"bosque": "./bin/cmd/bosque.js"
},
"engines": {
"node": ">=22.9.0"
}
}