-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.71 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
54
55
56
{
"name": "scm-slang",
"version": "1.0.3",
"license": "Apache-2.0",
"description": "Scheme-based implementations of Source, written in Typescript",
"keywords": ["Scheme", "interpreter", "compiler", "Source", "SICP"],
"author": {
"name": "Source Academy",
"url": "https://github.com/source-academy/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/source-academy/scm-slang.git"
},
"main": "index.js",
"bugs": {
"url": "https://github.com/source-academy/scm-slang/issues"
},
"homepage": "https://github.com/source-academy/scm-slang#readme",
"private": true,
"dependencies": {
"@types/estree": "^1.0.6",
"acorn": "^8.12.1",
"acorn-walk": "^8.3.4",
"js-base64": "^3.7.7"
},
"scripts": {
"build-libs": "npx ts-node ./src/compile-libs.ts",
"test": "jest",
"test-coverage": "jest --coverage",
"eslint": "eslint --ignore-path .eslintignore --ext .ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"format:ci": "prettier --ignore-path .gitignore --list-different \"**/*.+(js|ts|json)\"",
"prepare": "husky"
},
"meta": {},
"devDependencies": {
"@babel/preset-env": "^7.25.8",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"babel-jest": "^29.7.0",
"escodegen": "^2.1.0",
"eslint": "^8.57.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.6.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"source-map": "^0.7.4",
"ts-jest": "^29.2.5",
"typescript": "*"
}
}