-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 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
{
"name": "sicpjs",
"type": "module",
"version": "1.0.0",
"description": "infrastructure for generating SICP JS",
"keywords": [
"JavaScript",
"Source",
"SICP",
"SICP JS"
],
"author": {
"name": "Source Academy",
"url": "https://github.com/source-academy/"
},
"license": "Apache-2.0",
"dependencies": {
"sicp": "^1.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/source-academy/sicp.git"
},
"bugs": {
"url": "https://github.com/source-academy/sicp/issues"
},
"homepage": "https://sourceacademy.org/sicpjs",
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.5.0",
"@types/xmldom": "^0.1.34",
"fs-extra": "^11.3.4",
"hono": "^4.12.12",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"js-slang": "^1.0.74",
"lz-string": "^1.5.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"xmldom": "^0.6.0",
"xpath": "0.0.34"
},
"resolutions": {
"**/gl": "9.0.0-rc.9"
},
"scripts": {
"process": "tsx ./javascript/index.js",
"do": "./scripts/do.sh",
"all": "yarn pdf && yarn split && yarn js && yarn json;",
"lint": "prettier --list-different \"javascript\"",
"checktags": "tsx ./javascript/findBadTags.ts",
"clean": "yarn do clean",
"format": "prettier --write ./javascript",
"js": "yarn process js",
"json": "yarn process json",
"pdf": "yarn do pdf",
"prepare": "yarn do prepare",
"split": "yarn process web split",
"svgpdf": "./scripts/svg_to_pdf.sh",
"test": "node ./scripts/test.js",
"try": "cd docs_out; http-server --cors --port 8080",
"tryjson": "http-server --cors --port 8080",
"nodetest": "./scripts/nodetest.sh"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
}
}