-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 822 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 822 Bytes
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
{
"name": "ppl",
"version": "1.0.0",
"description": "Code for \"Principles of Programming Languages\" course",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"L1": "ts-node src/L1/L1.ts",
"L3": "ts-node src/L3/L3.ts",
"L4": "ts-node src/L4/L4.ts",
"L5": "ts-node src/L5/L5.ts",
"L7": "ts-node src/cps/L7.ts",
"repl": "ts-node src/cli/repl.ts"
},
"keywords": [],
"author": "Michael Elhadad",
"license": "MIT",
"dependencies": {
"ramda": "^0.32.0",
"s-expression": "^3.1.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"@types/ramda": "^0.31.1",
"jest": "^30.2.0",
"jest-extended": "^7.0.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}