-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.85 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "hc-lisp",
"version": "1.6.2",
"description": "A modern Lisp dialect implementation in TypeScript, inspired by Clojure and Peter Norvig's Lispy project.",
"main": "dist/hc-lisp.js",
"types": "dist/hc-lisp.d.ts",
"bin": {
"hc-lisp": "dist/cli.js",
"hclisp": "dist/cli.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"lisp",
"clojure",
"interpreter",
"functional-programming",
"repl",
"typescript",
"nodejs",
"programming-language",
"compiler",
"scripting"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build:watch": "tsc --project tsconfig.build.json --watch",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build && npm run quality",
"postbuild": "echo '#!/usr/bin/env node' | cat - dist/cli.js > temp && mv temp dist/cli.js && chmod +x dist/cli.js",
"start": "ts-node src/repl.ts",
"dev": "ts-node-dev --respawn --transpile-only src/repl.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"hclisp": "ts-node src/hc-runner.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"quality": "npm run lint && npm run type-check && npm test",
"quality:fix": "npm run lint:fix && npm run type-check && npm test",
"ci": "npm run quality && npm run test:coverage",
"pack": "npm pack",
"publish:dry": "npm publish --dry-run"
},
"author": "Hector Cardoso",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/HectorIFC/hc-lisp.git"
},
"bugs": {
"url": "https://github.com/HectorIFC/hc-lisp/issues"
},
"homepage": "https://github.com/HectorIFC/hc-lisp#readme",
"engines": {
"node": ">=22.14.0",
"npm": ">=10.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.10",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"jest": "^29.7.0",
"npm-check-updates": "^19.3.2",
"rimraf": "^6.1.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^14.0.2"
},
"overrides": {
"diff": "^8.0.3",
"tar": "^7.6.0",
"tmp": "^0.2.4",
"undici": "^6.23.0",
"qs": "^6.13.0",
"braces": "^3.0.3",
"npm": {
"tar": "^7.6.0",
"diff": "^8.0.3"
},
"node-gyp": {
"tar": "^7.6.0"
},
"pacote": {
"tar": "^7.6.0"
},
"libnpmdiff": {
"tar": "^7.6.0",
"diff": "^8.0.3"
}
}
}