forked from source-academy/js-slang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.61 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.61 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "js-slang",
"version": "1.0.85",
"license": "Apache-2.0",
"description": "Javascript-based implementations of Source, written in Typescript",
"keywords": [
"JavaScript",
"interpreter",
"compiler",
"Source",
"SICP"
],
"author": {
"name": "Source Academy",
"url": "https://github.com/source-academy/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/source-academy/js-slang.git"
},
"bugs": {
"url": "https://github.com/source-academy/js-slang/issues"
},
"homepage": "https://github.com/source-academy/js-slang",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"bin": "dist/repl/index.js",
"dependencies": {
"@babel/parser": "^7.19.4",
"@commander-js/extra-typings": "^14.0.0",
"@ts-morph/bootstrap": "^0.18.0",
"acorn": "^8.8.2",
"acorn-class-fields": "^1.0.0",
"acorn-loose": "^8.0.0",
"acorn-walk": "^8.0.0",
"astring": "^1.4.3",
"commander": "^14.0.0",
"js-base64": "^3.7.5",
"lodash": "^4.17.21",
"source-map": "0.7.6"
},
"scripts": {
"build": "yarn docs && yarn build:slang",
"build:slang": "tsc --project tsconfig.prod.json",
"eslint": "eslint --concurrency=auto src scripts",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:ci": "prettier --list-different \"src/**/*.{ts,tsx}\"",
"test": "vitest",
"test-coverage": "yarn test --coverage",
"docs": "node ./scripts/docs.mjs docs",
"jsdoc": "node ./scripts/docs.mjs",
"autocomplete": "node ./scripts/docs.mjs autocomplete",
"build_sicp_package": "yarn build && node ./scripts/build_sicp_package.mjs",
"publish_sicp_package": "./scripts/publish_sicp_package.sh",
"benchmark": "vitest benchmark",
"prepare": "husky"
},
"devDependencies": {
"@types/estree": "^1.0.5",
"@types/lodash": "^4.14.202",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.0.4",
"@vitest/eslint-plugin": "^1.3.4",
"@vitest/ui": "^4.0.4",
"ace-builds": "~1.17.0",
"coveralls": "^3.1.0",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.0.0",
"husky": "^9.0.0",
"jsdoc": "3.6.11",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"vitest": "^4.0.4"
},
"devEngines": {
"packageManager": {
"name": "yarn",
"version": "^4.6.0",
"onFail": "error"
}
},
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
}