-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.72 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
{
"name": "imba-shell",
"version": "0.5.1",
"description": "Interactive debugger and REPL for Imba.",
"keywords": [
"imba",
"imba-shell",
"shell",
"repl",
"debugger"
],
"author": "Donald Pakkies",
"license": "MIT",
"main": "dist/index.js",
"types": "types/index.d.ts",
"bugs": "https://github.com/donaldp/imba-shell/issues",
"homepage": "https://github.com/donaldp/imba-shell",
"repository": "https://github.com/donaldp/imba-shell",
"scripts": {
"build": "npm run build:entry && npm run build:compilers && npm run build:errors && npm run build:runners && npm run build:update",
"build:entry": "imba build src/index.imba --platform node -o dist -s -M",
"build:compilers": "imba build src/Compilers/index.imba --bundle --platform node -o dist/Compilers -s -M",
"build:errors": "imba build src/Errors/index.imba --bundle --platform node -o dist/Errors -s -M",
"build:runners": "imba build src/Runners/index.imba --bundle --platform node -o dist/Runners -s -M",
"build:update": "node ./scripts/update.js",
"test": "jest --roots test",
"test:watch": "jest --watchAll --roots test",
"prepare": "npm run build && npm run test"
},
"bin": {
"imba-r": "./bin/runtime",
"imba-runtime": "./bin/runtime",
"imba-shell": "./bin/repl",
"imbar": "./bin/runtime",
"imbas": "./bin/repl",
"ir": "./bin/runtime"
},
"exports": {
".": "./dist/index.js",
"./Compilers": "./dist/Compilers/index.js",
"./Errors": "./dist/Errors/index.js",
"./Runners": "./dist/Runners/index.js"
},
"dependencies": {
"imba": "^2.0.0-alpha.225",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"jest": "^29.3.1"
}
}