-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 964 Bytes
/
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
{
"name": "soodocode",
"private": "true",
"version": "1.0.0",
"description": "Runtime and checker for Cambridge Computer Science pseudocode",
"main": "index.js",
"scripts": {
"test": "tsc -b spec && jasmine",
"build": "tsc -b core/ ui/",
"profile": "node ./scripts/profiler.js 100000 5",
"watch": "tsc -b core/ spec/ cli/ scripts/ ui/ -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BalaM314/soodocode.git"
},
"keywords": [
"cambridge",
"pseudocode",
"runtime",
"igcse",
"as-a-levels"
],
"author": "BalaM314",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/BalaM314/soodocode/issues"
},
"homepage": "https://github.com/BalaM314/soodocode#readme",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.15.11",
"eslint": "^9.0.0",
"jasmine": "^5.1.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"type": "module"
}